diff options
author | Tom Tromey <tromey@redhat.com> | 2012-02-07 19:42:27 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-02-07 19:42:27 +0000 |
commit | 64e7d9dddc00228cdbcecdd4c053cf83cf6608b7 (patch) | |
tree | 81e5d325950872985aca39c9bf8ea390c04261b1 /gdb/NEWS | |
parent | 1d6b2d2b4a864c478fb6a46e15a29859641fe788 (diff) | |
download | gdb-64e7d9dddc00228cdbcecdd4c053cf83cf6608b7.zip gdb-64e7d9dddc00228cdbcecdd4c053cf83cf6608b7.tar.gz gdb-64e7d9dddc00228cdbcecdd4c053cf83cf6608b7.tar.bz2 |
PR python/13599:
* python/py-symbol.c (sympy_line): New function.
(symbol_object_getset): Add "line".
gdb/doc
* gdb.texinfo (Symbols In Python): Document Symbol.line.
gdb/testsuite
* gdb.python/py-symbol.c (qq): New global.
* gdb.python/py-symbol.exp: Add test for frame-less
lookup_symbol.
* gdb.python/py-symtab.exp: Fix line number.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -10,6 +10,11 @@ ** A new class, gdb.printing.FlagEnumerationPrinter, can be used to apply "flag enum"-style pretty-printing to any enum. + ** gdb.lookup_symbol can now work when there is no current frame. + + ** gdb.Symbol now has a 'line' attribute, holding the line number in + the source at which the symbol was defined. + * GDBserver now supports stdio connections. E.g. (gdb) target remote | ssh myhost gdbserver - hello |