diff options
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/python.texi | 15 |
2 files changed, 20 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index b1ddc28..f133f33 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,5 +1,10 @@ 2016-07-13 Tom Tromey <tom@tromey.com> + PR python/15620, PR python/18620: + * python.texi (Events In Python): Document new breakpoint events. + +2016-07-13 Tom Tromey <tom@tromey.com> + PR python/17698: * python.texi (Breakpoints In Python): Document Breakpoint.pending. diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index e00bc2a..a17e37d 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -2965,6 +2965,21 @@ A gdb.Frame object representing the frame in which the register was modified. Denotes which register was modified. @end defvar +@item events.breakpoint_created +This is emitted when a new breakpoint has been created. The argument +that is passed is the new @code{gdb.Breakpoint} object. + +@item events.breakpoint_modified +This is emitted when a breakpoint has been modified in some way. The +argument that is passed is the new @code{gdb.Breakpoint} object. + +@item events.breakpoint_deleted +This is emitted when a breakpoint has been deleted. The argument that +is passed is the @code{gdb.Breakpoint} object. When this event is +emitted, the @code{gdb.Breakpoint} object will already be in its +invalid state; that is, the @code{is_valid} method will return +@code{False}. + @end table @node Threads In Python |