gdb
authorTom Tromey <tromey@redhat.com>
Wed, 29 Jun 2011 17:30:01 +0000 (17:30 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 29 Jun 2011 17:30:01 +0000 (17:30 +0000)
2011-06-29  André Pönitz  <andre.poenitz@nokia.com>

* mi/mi-main.c (mi_cmd_list_features): Emit
breakpoint-notifications.
gdb/doc
* gdb.texinfo (GDB/MI Miscellaneous Commands): Document
breakpoint-notifications feature.

gdb/ChangeLog
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/mi/mi-main.c

index 6961d69af89ae7cd8d7cca9d76567f1991dc7b96..8088114269fcd68af1214d9cab9a7f3b3306c6e2 100644 (file)
@@ -1,3 +1,8 @@
+2011-06-29  André Pönitz  <andre.poenitz@nokia.com>
+
+       * mi/mi-main.c (mi_cmd_list_features): Emit
+       breakpoint-notifications.
+
 2011-06-29  Tom Tromey  <tromey@redhat.com>
 
        PR fortran/10036:
index bdff2462de33553ca5b6320c96ed3fe3ed594a00..12404f836f56b7b694b5adbd058682c61e91382c 100644 (file)
@@ -1,3 +1,8 @@
+2011-06-29  Tom Tromey  <tromey@redhat.com>
+
+       * gdb.texinfo (GDB/MI Miscellaneous Commands): Document
+       breakpoint-notifications feature.
+
 2011-06-29  Ulrich Weigand  <ulrich.weigand@linaro.org>
 
        * gdb.texinfo (Target Description): Remove warning about
index ca2b4d5874971ae25ab5b0dbf8fe336a3da5ba65..046bf5499a66d1566369ca8ca78e57b7a0b6dc59 100644 (file)
@@ -30066,6 +30066,9 @@ Indicates presence of the @code{-thread-info} command.
 @item data-read-memory-bytes
 Indicates presense of the @code{-data-read-memory-bytes} and the
 @code{-data-write-memory-bytes} commands.
+@item breakpoint-notifications
+Indicates that changes to breakpoints and breakpoints created via the
+CLI will be announced via async records.
 
 @end table
 
index ca62a30764127af11929b37e986e3186a459cad9..7592a74e630486fd6f5af3bf3595be4c3ce9eecd 100644 (file)
@@ -1708,6 +1708,7 @@ mi_cmd_list_features (char *command, char **argv, int argc)
       ui_out_field_string (uiout, NULL, "pending-breakpoints");
       ui_out_field_string (uiout, NULL, "thread-info");
       ui_out_field_string (uiout, NULL, "data-read-memory-bytes");
+      ui_out_field_string (uiout, NULL, "breakpoint-notifications");
       
 #if HAVE_PYTHON
       ui_out_field_string (uiout, NULL, "python");