diff options
author | Tim Wiederhake <tim.wiederhake@intel.com> | 2017-05-02 11:35:54 +0200 |
---|---|---|
committer | Tim Wiederhake <tim.wiederhake@intel.com> | 2017-05-02 11:35:54 +0200 |
commit | d050f7d7f474c7e3ba26902a9cbb185910921a11 (patch) | |
tree | 68ee8305e83ce6d0cfcf17b91454d98693e01ecd /gdb/python/python-internal.h | |
parent | 14f819c8c5f7d080e5eea9256f0ec7453aac750e (diff) | |
download | binutils-d050f7d7f474c7e3ba26902a9cbb185910921a11.zip binutils-d050f7d7f474c7e3ba26902a9cbb185910921a11.tar.gz binutils-d050f7d7f474c7e3ba26902a9cbb185910921a11.tar.bz2 |
Python: Introduce gdb.Instruction class
This adds a generic instruction class to Python and has gdb.RecordInstruction
inherit from it.
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 e84c8d2..ebb83f0 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -562,6 +562,8 @@ int gdbpy_initialize_values (void) CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION; int gdbpy_initialize_frames (void) CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION; +int gdbpy_initialize_instruction (void) + CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION; int gdbpy_initialize_btrace (void) CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION; int gdbpy_initialize_record (void) |