diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2009-01-30 18:28:01 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2009-01-30 18:28:01 +0000 |
commit | 41447f92e2151bd8fcd5f3e4b8dd5e972aec9b67 (patch) | |
tree | c82ea17b7df6f8187aa15cd97695703bad77cc09 /gdb/doc | |
parent | 33a7ffc270cc08ccec978d8e6ca2ea29e75c5478 (diff) | |
download | gdb-41447f92e2151bd8fcd5f3e4b8dd5e972aec9b67.zip gdb-41447f92e2151bd8fcd5f3e4b8dd5e972aec9b67.tar.gz gdb-41447f92e2151bd8fcd5f3e4b8dd5e972aec9b67.tar.bz2 |
* breakpoint.c (create_breakpoint, create_breakpoints)
(break_command_really, set_breakpoint): New parameter enabled.
(create_breakpoint, break_command_really): Make breakpoint
disabled if so requested.
* breakpoint.h (set_breakpoint): New parameter enabled.
* mi/mi-cmd-break.c (mi_cmd_break_insert): Handle the -d option.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index e11285c..8b3d084 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2009-01-30 Vladimir Prus <vladimir@codesourcery.com> + + * gdb.texinfo (GDB/MI Breakpoint Commands): Document the -d + option to -break-insert. + 2009-01-28 Daniel Jacobowitz <dan@codesourcery.com> Jerome Guitton <guitton@adacore.com> diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 213438d..9f545d5 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -19925,7 +19925,7 @@ N.A. @subsubheading Synopsis @smallexample - -break-insert [ -t ] [ -h ] [ -f ] + -break-insert [ -t ] [ -h ] [ -f ] [ -d ] [ -c @var{condition} ] [ -i @var{ignore-count} ] [ -p @var{thread} ] [ @var{location} ] @end smallexample @@ -19960,6 +19960,8 @@ refers to unknown files or functions), create a pending breakpoint. Without this flag, @value{GDBN} will report an error, and won't create a breakpoint, if @var{location} cannot be parsed. +@item -d +Create a disabled breakpoint. @end table @subsubheading Result |