* mi/mi-main.c (mi_cmd_list_features): Announce
authorVladimir Prus <vladimir@codesourcery.com>
Tue, 18 Dec 2007 11:06:12 +0000 (11:06 +0000)
committerVladimir Prus <vladimir@codesourcery.com>
Tue, 18 Dec 2007 11:06:12 +0000 (11:06 +0000)
the 'pending-breakpoints' feature.

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

index 6d56bbc3a1e6111d459f0460eecd77dc5c6122c3..fd634bc9433c19868d56dba5c74d8eb74cd45a65 100644 (file)
@@ -1,3 +1,8 @@
+2007-12-18  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * mi/mi-main.c (mi_cmd_list_features): Announce
+       the 'pending-breakpoints' feature.
+
 2007-12-17  Jim Blandy  <jimb@codesourcery.com>
 
        * dwarf2read.c (dwarf2_add_field): Correctly scale all byte
index fb28f78787dcfb38ccc100bd4177f920db895374..9b3d8332afd30b56c62b0629d168cd1f41afb312 100644 (file)
@@ -1,3 +1,9 @@
+2007-12-18  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * gdb.texinfo (Miscellaneous gdb/mi Commands):
+       Document 'pending-breakpoints' feature of
+       -list-features.
+
 2007-12-17  Luis Machado  <luisgpm@br.ibm.com>
 
        * doc/gdb.texinfo: Add new parameter's description.
index 65c97a2a0dee5de284d1d1c3ab5fb8620def652c..177f7918e3e839286e3eb60e7e24055273178cc7 100644 (file)
@@ -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
index 025c66d107a99e10041a5a371c7b9d98c8982922..b23d337cbcf3c661e1201298d98fa88a6f5cebec 100644 (file)
@@ -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);