diff options
author | Doug Evans <dje@google.com> | 2014-12-02 11:12:49 -0800 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2014-12-02 11:12:49 -0800 |
commit | 71dd4b30a741cf8a23e8a49f6a4294759f76be33 (patch) | |
tree | 0d3df55be8a1c69eb9e302648f9315cda3489788 /gdb/doc/python.texi | |
parent | dc6c87175b672f00e72997c0ff9dcf984e305285 (diff) | |
download | binutils-71dd4b30a741cf8a23e8a49f6a4294759f76be33.zip binutils-71dd4b30a741cf8a23e8a49f6a4294759f76be33.tar.gz binutils-71dd4b30a741cf8a23e8a49f6a4294759f76be33.tar.bz2 |
revert previous patch so that I can re-commit with correct author
Diffstat (limited to 'gdb/doc/python.texi')
-rw-r--r-- | gdb/doc/python.texi | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index 63db2b2..5b35306 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -2738,55 +2738,6 @@ A reference to the program space (@code{gdb.Progspace}) whose objfile list has been cleared. @xref{Progspaces In Python}. @end defvar -@item events.inferior_call_pre -Emits @code{gdb.InferiorCallPreEvent} which indicates that a function in -the inferior is about to be called. - -@defvar InferiorCallPreEvent.ptid -The thread in which the call will be run. -@end defvar - -@defvar InferiorCallPreEvent.address -The location of the function to be called. -@end defvar - -@item events.inferior_call_post -Emits @code{gdb.InferiorCallPostEvent} which indicates that a function in -the inferior has returned. - -@defvar InferiorCallPostEvent.ptid -The thread in which the call was run. -@end defvar - -@defvar InferiorCallPostEvent.address -The location of the function that was called. -@end defvar - -@item events.memory_changed -Emits @code{gdb.MemoryChangedEvent} which indicates that the memory of the -inferior has been modified by the @value{GDBN} user, for instance via a -command like @w{@code{set *addr = value}}. The event has the following -attributes: - -@defvar MemoryChangedEvent.address -The start address of the changed region. -@end defvar - -@defvar MemoryChangedEvent.length -Length in bytes of the changed region. -@end defvar - -@item events.register_changed -Emits @code{gdb.RegisterChangedEvent} which indicates that a register in the -inferior has been modified by the @value{GDBN} user. - -@defvar RegisterChangedEvent.frame -A gdb.Frame object representing the frame in which the register was modified. -@end defvar -@defvar RegisterChangedEvent.regnum -Denotes which register was modified. -@end defvar - @end table @node Threads In Python |