This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 0/7] Python extension patchset


From: Jeff Mahoney <jeffm@suse.com>

Hi all -

Here's the cleaned up version of my python extension patchset.

-Jeff


Jeff Mahoney (7):
  check_types_equal: short circuit check if identical pointers are used
  py-value: properly handle unsigned and pointer types
  py-symbol: use Py_RETURN_NONE instead of open coding it
  py-symbol: Require a frame for lookup_symbol only when necessary
  py-symbol: export section name
  py-minsymbol: Add interface to access minimal_symbols
  py-regcache: Add interface to regcache

 gdb/Makefile.in              |  12 ++
 gdb/gdbtypes.c               |   3 +
 gdb/python/py-infthread.c    |  31 ++++
 gdb/python/py-minsymbol.c    | 390 +++++++++++++++++++++++++++++++++++++++++++
 gdb/python/py-regcache.c     | 367 ++++++++++++++++++++++++++++++++++++++++
 gdb/python/py-symbol.c       |  60 +++++--
 gdb/python/py-value.c        |  12 ++
 gdb/python/python-internal.h |  12 ++
 gdb/python/python.c          |   8 +-
 9 files changed, 876 insertions(+), 19 deletions(-)
 create mode 100644 gdb/python/py-minsymbol.c
 create mode 100644 gdb/python/py-regcache.c

-- 
2.1.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]