diff options
author | Tom Tromey <tromey@redhat.com> | 2011-06-29 17:30:01 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-06-29 17:30:01 +0000 |
commit | 39c4d40aa598e86fe2d8b7822438e76940aa3346 (patch) | |
tree | 96ece50c1d45fb562ad11ab4d72d64f0eb8d696f /gdb | |
parent | a7dbfd1c34af172f068c00d70d5759c797c2db52 (diff) | |
download | gdb-39c4d40aa598e86fe2d8b7822438e76940aa3346.zip gdb-39c4d40aa598e86fe2d8b7822438e76940aa3346.tar.gz gdb-39c4d40aa598e86fe2d8b7822438e76940aa3346.tar.bz2 |
gdb
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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 3 | ||||
-rw-r--r-- | gdb/mi/mi-main.c | 1 |
4 files changed, 14 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6961d69..8088114 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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: diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index bdff246..12404f8 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -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 diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index ca2b4d5..046bf54 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -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 diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index ca62a30..7592a74 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -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"); |