From 4c692aa8cf50aa2368443b984800ff1b1eeacde9 Mon Sep 17 00:00:00 2001 From: vprus Date: Tue, 18 Dec 2007 11:06:10 +0000 Subject: [PATCH] * mi/mi-main.c (mi_cmd_list_features): Announce the 'pending-breakpoints' feature. --- gdb/ChangeLog | 5 +++++ gdb/doc/ChangeLog | 6 ++++++ gdb/doc/gdb.texinfo | 4 ++++ gdb/mi/mi-main.c | 1 + 4 files changed, 16 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6d56bbc3a1..fd634bc943 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-12-18 Vladimir Prus + + * mi/mi-main.c (mi_cmd_list_features): Announce + the 'pending-breakpoints' feature. + 2007-12-17 Jim Blandy * dwarf2read.c (dwarf2_add_field): Correctly scale all byte diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index fb28f78787..9b3d8332af 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,9 @@ +2007-12-18 Vladimir Prus + + * gdb.texinfo (Miscellaneous gdb/mi Commands): + Document 'pending-breakpoints' feature of + -list-features. + 2007-12-17 Luis Machado * doc/gdb.texinfo: Add new parameter's description. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 65c97a2a0d..177f7918e3 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -21607,6 +21607,10 @@ The current list of features is: @samp{frozen-varobjs}---indicates presence of the @code{-var-set-frozen} command, as well as possible presense of the @code{frozen} field in the output of @code{-varobj-create}. +@item +@samp{pending-breakpoints}---indicates presence of the @code{-f} +option to the @code{-break-insert} command. + @end itemize @subheading The @code{-interpreter-exec} Command diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index 025c66d107..b23d337cbc 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -1054,6 +1054,7 @@ mi_cmd_list_features (char *command, char **argv, int argc) cleanup = make_cleanup_ui_out_list_begin_end (uiout, "features"); ui_out_field_string (uiout, NULL, "frozen-varobjs"); + ui_out_field_string (uiout, NULL, "pending-breakpoints"); do_cleanups (cleanup); -- 2.11.0