diff options
author | Keith Seitz <keiths@redhat.com> | 2012-06-20 20:11:06 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2012-06-20 20:11:06 +0000 |
commit | 472a237988df722a6a4c17552efc829a2bad05a3 (patch) | |
tree | ad8c5812bf2db785a9d8007318f13e32ce7c4ef4 /gdb/doc | |
parent | 2678e2af1fd5f3e779f668b107ef08eda70f145a (diff) | |
download | gdb-472a237988df722a6a4c17552efc829a2bad05a3.zip gdb-472a237988df722a6a4c17552efc829a2bad05a3.tar.gz gdb-472a237988df722a6a4c17552efc829a2bad05a3.tar.bz2 |
* gdb.texinfo (GDB/MI Breakpoint Commands): Re-order options
for -break-insert and document -p.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 12 |
2 files changed, 12 insertions, 5 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 586f708..c0f28be 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2012-06-20 Keith Seitz <keiths@redhat.com> + + * gdb.texinfo (GDB/MI Breakpoint Commands): Re-order options + for -break-insert and document -p. + 2012-06-20 Yao Qi <yao@codesourcery.com> * gdb.texinfo (Inferiors In Python): Replace "gdb.read_memory" diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index f7946cd..b5e3d60 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -28020,7 +28020,7 @@ N.A. @smallexample -break-insert [ -t ] [ -h ] [ -f ] [ -d ] [ -a ] [ -c @var{condition} ] [ -i @var{ignore-count} ] - [ -p @var{thread} ] [ @var{location} ] + [ -p @var{thread-id} ] [ @var{location} ] @end smallexample @noindent @@ -28043,10 +28043,6 @@ The possible optional parameters of this command are: Insert a temporary breakpoint. @item -h Insert a hardware breakpoint. -@item -c @var{condition} -Make the breakpoint conditional on @var{condition}. -@item -i @var{ignore-count} -Initialize the @var{ignore-count}. @item -f If @var{location} cannot be parsed (for example if it refers to unknown files or functions), create a pending @@ -28058,6 +28054,12 @@ Create a disabled breakpoint. @item -a Create a tracepoint. @xref{Tracepoints}. When this parameter is used together with @samp{-h}, a fast tracepoint is created. +@item -c @var{condition} +Make the breakpoint conditional on @var{condition}. +@item -i @var{ignore-count} +Initialize the @var{ignore-count}. +@item -p @var{thread-id} +Restrict the breakpoint to the specified @var{thread-id}. @end table @subsubheading Result |