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 6961d69..8088114 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 bdff246..12404f8 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 ca2b4d5..046bf54 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 ca62a30..7592a74 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");