diff options
author | Yao Qi <yao@codesourcery.com> | 2012-08-06 14:21:10 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-08-06 14:21:10 +0000 |
commit | d9f08f52f31140d6b87c756cf7729d8c9b4658d0 (patch) | |
tree | a3f5b68ef2d5bc819f53cc3e5853774b0c2546d0 /gdb/doc | |
parent | 5d2939f19345239aeb5b9a4330a1eab4eb290249 (diff) | |
download | gdb-d9f08f52f31140d6b87c756cf7729d8c9b4658d0.zip gdb-d9f08f52f31140d6b87c756cf7729d8c9b4658d0.tar.gz gdb-d9f08f52f31140d6b87c756cf7729d8c9b4658d0.tar.bz2 |
gdb/doc/
Fix PR14371.
* gdb.texinfo (GDB/MI Async Records): Fix the doc for
'=breakpoint-deleted'.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 90fb5f5..16fb3aa 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,10 @@ +2012-08-06 Yao Qi <yao@codesourcery.com> + + Fix PR14371. + + * gdb.texinfo (GDB/MI Async Records): Fix the doc for + '=breakpoint-deleted'. + 2012-08-02 Yao Qi <yao@codesourcery.com> * gdb.texinfo (Native): Remove node Neutrino. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 15a9efd..793e7cf 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -27607,13 +27607,14 @@ thread groups. @item =breakpoint-created,bkpt=@{...@} @itemx =breakpoint-modified,bkpt=@{...@} -@itemx =breakpoint-deleted,bkpt=@{...@} +@itemx =breakpoint-deleted,id=@var{number} Reports that a breakpoint was created, modified, or deleted, respectively. Only user-visible breakpoints are reported to the MI user. The @var{bkpt} argument is of the same form as returned by the various -breakpoint commands; @xref{GDB/MI Breakpoint Commands}. +breakpoint commands; @xref{GDB/MI Breakpoint Commands}. The +@var{number} is the ordinal number of the breakpoint. Note that if a breakpoint is emitted in the result record of a command, then it will not also be emitted in an async record. |