diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2018-09-13 15:39:26 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2018-09-13 15:42:12 -0400 |
commit | a40bf0c2e93daac4ae4ce7dd1c43ab6135e76720 (patch) | |
tree | 6e743305a90a750fce1d41497e51dac75b0f650a /gdb/NEWS | |
parent | 4a3fe98f885a2d1db804584e7ea265ab3ccef4d7 (diff) | |
download | fsf-binutils-gdb-a40bf0c2e93daac4ae4ce7dd1c43ab6135e76720.zip fsf-binutils-gdb-a40bf0c2e93daac4ae4ce7dd1c43ab6135e76720.tar.gz fsf-binutils-gdb-a40bf0c2e93daac4ae4ce7dd1c43ab6135e76720.tar.bz2 |
python: Add Inferior.progspace property
This patch adds a progspace property to the gdb.Inferior type, which
allows getting the gdb.Progspace object associated to that inferior.
In conjunction with the following patch, this will allow scripts iterate
on objfiles associated with a particular inferior.
gdb/ChangeLog:
* python/py-inferior.c (infpy_get_progspace): New function.
(inferior_object_getset): Add progspace property.
* NEWS: Mention the new property.
gdb/doc/ChangeLog:
* python.texi (Inferiors In Python): Document
Inferior.progspace.
(Program Spaces In Python): Document that
gdb.current_progspace() is the same as
gdb.selected_inferior().progspace.
gdb/testsuite/ChangeLog:
* gdb.python/py-inferior.exp: Add tests for Inferior.progspace
and a few other Inferior properties when the Inferior is no
longer valid.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -84,6 +84,11 @@ GNU/Linux/RISC-V riscv*-*-linux* CSKY ELF csky*-*-elf CSKY GNU/LINUX csky*-*-linux +* Python API + + ** The gdb.Inferior type has a new 'progspace' property, which is the program + space associated to that inferior. + *** Changes in GDB 8.2 * The 'set disassembler-options' command now supports specifying options |