diff options
author | Keith Seitz <keiths@redhat.com> | 2012-06-25 20:51:30 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2012-06-25 20:51:30 +0000 |
commit | 496ee73e83adc843bdea34b948c0cfb17c55f61f (patch) | |
tree | bdbff56f8a74445c39b0b1cab81c8d99490b27e8 /gdb/doc | |
parent | 18b5ff1b53f9a3562cdd0ca67617023683620fb3 (diff) | |
download | gdb-496ee73e83adc843bdea34b948c0cfb17c55f61f.zip gdb-496ee73e83adc843bdea34b948c0cfb17c55f61f.tar.gz gdb-496ee73e83adc843bdea34b948c0cfb17c55f61f.tar.bz2 |
* gdb.texinfo (GDB/MI Breakpoint Commands): Remove "-r" option
from example. Remove "rbreak" from list of corresponding
gdb commands.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index ebd9584..267a2df 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,9 @@ +2012-06-25 Keith Seitz <keiths@redhat.com> + + * gdb.texinfo (GDB/MI Breakpoint Commands): Remove "-r" option + from example. Remove "rbreak" from list of corresponding + gdb commands. + 2012-06-23 Doug Evans <dje@google.com> * gdb.texinfo (Index Section Format): Document version 7 format. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index e563303..d3f702a 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -28088,7 +28088,7 @@ Note: this format is open to change. @subsubheading @value{GDBN} Command The corresponding @value{GDBN} commands are @samp{break}, @samp{tbreak}, -@samp{hbreak}, @samp{thbreak}, and @samp{rbreak}. +@samp{hbreak}, and @samp{thbreak}. @c and @samp{rbreak}. @subsubheading Example @@ -28117,11 +28117,11 @@ bkpt=@{number="2",type="breakpoint",disp="del",enabled="y", addr="0x00010774",func="foo",file="recursive2.c", fullname="/home/foo/recursive2.c",line="11",times="0"@}]@} (gdb) --break-insert -r foo.* -~int foo(int, int); -^done,bkpt=@{number="3",addr="0x00010774",file="recursive2.c, -"fullname="/home/foo/recursive2.c",line="11",times="0"@} -(gdb) +@c -break-insert -r foo.* +@c ~int foo(int, int); +@c ^done,bkpt=@{number="3",addr="0x00010774",file="recursive2.c, +@c "fullname="/home/foo/recursive2.c",line="11",times="0"@} +@c (gdb) @end smallexample @subheading The @code{-break-list} Command |