mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 13:27:26 +08:00
* gdb.texinfo (GDB/MI Breakpoint Commands): Re-order options
for -break-insert and document -p.
This commit is contained in:
@ -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>
|
2012-06-20 Yao Qi <yao@codesourcery.com>
|
||||||
|
|
||||||
* gdb.texinfo (Inferiors In Python): Replace "gdb.read_memory"
|
* gdb.texinfo (Inferiors In Python): Replace "gdb.read_memory"
|
||||||
|
@ -28020,7 +28020,7 @@ N.A.
|
|||||||
@smallexample
|
@smallexample
|
||||||
-break-insert [ -t ] [ -h ] [ -f ] [ -d ] [ -a ]
|
-break-insert [ -t ] [ -h ] [ -f ] [ -d ] [ -a ]
|
||||||
[ -c @var{condition} ] [ -i @var{ignore-count} ]
|
[ -c @var{condition} ] [ -i @var{ignore-count} ]
|
||||||
[ -p @var{thread} ] [ @var{location} ]
|
[ -p @var{thread-id} ] [ @var{location} ]
|
||||||
@end smallexample
|
@end smallexample
|
||||||
|
|
||||||
@noindent
|
@noindent
|
||||||
@ -28043,10 +28043,6 @@ The possible optional parameters of this command are:
|
|||||||
Insert a temporary breakpoint.
|
Insert a temporary breakpoint.
|
||||||
@item -h
|
@item -h
|
||||||
Insert a hardware breakpoint.
|
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
|
@item -f
|
||||||
If @var{location} cannot be parsed (for example if it
|
If @var{location} cannot be parsed (for example if it
|
||||||
refers to unknown files or functions), create a pending
|
refers to unknown files or functions), create a pending
|
||||||
@ -28058,6 +28054,12 @@ Create a disabled breakpoint.
|
|||||||
@item -a
|
@item -a
|
||||||
Create a tracepoint. @xref{Tracepoints}. When this parameter
|
Create a tracepoint. @xref{Tracepoints}. When this parameter
|
||||||
is used together with @samp{-h}, a fast tracepoint is created.
|
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
|
@end table
|
||||||
|
|
||||||
@subsubheading Result
|
@subsubheading Result
|
||||||
|
Reference in New Issue
Block a user