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.
This commit is contained in:
Tom Tromey 2011-06-29 17:30:01 +00:00
parent a7dbfd1c34
commit 39c4d40aa5
4 changed files with 14 additions and 0 deletions

View 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:

View 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

View 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

View 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");