aboutsummaryrefslogtreecommitdiff
path: root/gdb/doc
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2014-12-02 11:12:49 -0800
committerDoug Evans <dje@google.com>2014-12-02 11:12:49 -0800
commit71dd4b30a741cf8a23e8a49f6a4294759f76be33 (patch)
tree0d3df55be8a1c69eb9e302648f9315cda3489788 /gdb/doc
parentdc6c87175b672f00e72997c0ff9dcf984e305285 (diff)
downloadgdb-71dd4b30a741cf8a23e8a49f6a4294759f76be33.zip
gdb-71dd4b30a741cf8a23e8a49f6a4294759f76be33.tar.gz
gdb-71dd4b30a741cf8a23e8a49f6a4294759f76be33.tar.bz2
revert previous patch so that I can re-commit with correct author
Diffstat (limited to 'gdb/doc')
-rw-r--r--gdb/doc/ChangeLog6
-rw-r--r--gdb/doc/observer.texi16
-rw-r--r--gdb/doc/python.texi49
3 files changed, 0 insertions, 71 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index 08b49f5..3b27128 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,9 +1,3 @@
-2014-12-02 Nick Bull <nicholaspbull@gmail.com>
-
- * python.texi (Events In Python): Document new events
- InferiorCallPreEvent, InferiorCallPostEvent, MemoryChangedEvent
- and RegisterChangedEvent.
-
2014-11-30 Jan Kratochvil <jan.kratochvil@redhat.com>
Add add-auto-load-scripts-directory.
diff --git a/gdb/doc/observer.texi b/gdb/doc/observer.texi
index 7c4af6b..2757587 100644
--- a/gdb/doc/observer.texi
+++ b/gdb/doc/observer.texi
@@ -281,22 +281,6 @@ The trace state variable @var{tsv} is deleted. If @var{tsv} is
The trace state value @var{tsv} is modified.
@end deftypefun
-@deftypefun void inferior_call_pre (ptid_t @var{thread}, CORE_ADDR @var{address})
-An inferior function at @var{address} is about to be called in thread
-@var{thread}.
-@end deftypefun
-
-@deftypefun void inferior_call_post (ptid_t @var{thread}, CORE_ADDR @var{address})
-The inferior function at @var{address} has just been called. This observer
-is called even if the inferior exits during the call. @var{thread} is the
-thread in which the function was called, which may be different from the
-current thread.
-@end deftypefun
-
-@deftypefun void register_changed (struct frame_info *@var{frame}, int @var{regnum})
-A register in the inferior has been modified by the @value{GDBN} user.
-@end deftypefun
-
@deftypefun void test_notification (int @var{somearg})
This observer is used for internal testing. Do not use.
See testsuite/gdb.gdb/observer.exp.
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