diff options
author | Doug Evans <dje@google.com> | 2011-02-22 22:48:12 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2011-02-22 22:48:12 +0000 |
commit | 6e6fbe60bc0412fec955d539b445b66b14a04e69 (patch) | |
tree | 369fa1e0716583cb0acf3890749ec42a6d0fae4b /gdb/python/python-internal.h | |
parent | 1d41d745ca37dc95f93c8e1a148b3c46c85d7273 (diff) | |
download | binutils-6e6fbe60bc0412fec955d539b445b66b14a04e69.zip binutils-6e6fbe60bc0412fec955d539b445b66b14a04e69.tar.gz binutils-6e6fbe60bc0412fec955d539b445b66b14a04e69.tar.bz2 |
Add gdb.lookup_global_symbol python function.
* NEWS: Add entry.
* python/py-symbol.c (gdbpy_lookup_global_symbol): New function.
* python/python-internal.h (gdbpy_lookup_global_symbol): Declare it.
* python/python.c (GdbMethods): Add entry for lookup_global_symbol.
doc/
* gdb.texinfo (Symbols In Python): Document lookup_global_symbol.
Clarify behaviour of lookup_symbol when `block' argument is omitted,
add description of result, fix @defun formatting.
testsuite/
* gdb.python/py-symbol.exp: Test lookup_global_symbol.
Diffstat (limited to 'gdb/python/python-internal.h')
-rw-r--r-- | gdb/python/python-internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index 134268b..49b6acf 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -136,6 +136,8 @@ PyObject *gdbpy_history (PyObject *self, PyObject *args); PyObject *gdbpy_breakpoints (PyObject *, PyObject *); PyObject *gdbpy_frame_stop_reason_string (PyObject *, PyObject *); PyObject *gdbpy_lookup_symbol (PyObject *self, PyObject *args, PyObject *kw); +PyObject *gdbpy_lookup_global_symbol (PyObject *self, PyObject *args, + PyObject *kw); PyObject *gdbpy_newest_frame (PyObject *self, PyObject *args); PyObject *gdbpy_selected_frame (PyObject *self, PyObject *args); PyObject *gdbpy_block_for_pc (PyObject *self, PyObject *args); |