]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: Make use of 'add_info' to create info sub-commands.
authorAndrew Burgess <andrew.burgess@embecosm.com>
Mon, 9 Nov 2015 20:27:55 +0000 (20:27 +0000)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Wed, 11 Nov 2015 09:04:05 +0000 (09:04 +0000)
Switch to using 'add_info' function for creating basic info
sub-commands.

gdb/ChangeLog:

* avr-tdep.c (_initialize_avr_tdep): Switch to 'add_info' for creating
info sub-commands.
* gnu-nat.c (add_task_commands): Likewise.
* macrocmd.c (_initialize_macrocmd): Likewise.

gdb/ChangeLog
gdb/avr-tdep.c
gdb/gnu-nat.c
gdb/macrocmd.c

index 9edfd8d7b044bc758c00324f4bb56726603818a5..604ec4d4d47408622577bce089648551744a6f4d 100644 (file)
@@ -1,3 +1,10 @@
+2015-11-11  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * avr-tdep.c (_initialize_avr_tdep): Switch to 'add_info' for creating
+       info sub-commands.
+       * gnu-nat.c (add_task_commands): Likewise.
+       * macrocmd.c (_initialize_macrocmd): Likewise.
+
 2015-11-11  Andrew Burgess  <andrew.burgess@embecosm.com>
 
        * cli/cli-decode.c (add_info): Switch to class_info.
index 9c54b2d4b05ad449c936fde669310c48a897b6bd..ccc8b454b8372a2960bca33cb89fdadde1e9bdf5 100644 (file)
@@ -1632,7 +1632,6 @@ _initialize_avr_tdep (void)
   /* FIXME: TRoth/2002-02-18: This should probably be changed to 'info avr
      io_registers' to signify it is not available on other platforms.  */
 
-  add_cmd ("io_registers", class_info, avr_io_reg_read_command,
-          _("query remote avr target for io space register values"),
-          &infolist);
+  add_info ("io_registers", avr_io_reg_read_command,
+           _("query remote avr target for io space register values"));
 }
index d3f54d0375dd9f02e56f24f9904f4ebdd58af25e..5e4d705cec3e1225cac12f43143bc1c219ee533d 100644 (file)
@@ -3264,21 +3264,16 @@ This is the same as setting `task pause', `exceptions', and\n\
           &setlist);
 
   /* Commands to show information about the task's ports.  */
-  add_cmd ("send-rights", class_info, info_send_rights_cmd,
-          _("Show information about the task's send rights"),
-          &infolist);
-  add_cmd ("receive-rights", class_info, info_recv_rights_cmd,
-          _("Show information about the task's receive rights"),
-          &infolist);
-  add_cmd ("port-rights", class_info, info_port_rights_cmd,
-          _("Show information about the task's port rights"),
-          &infolist);
-  add_cmd ("port-sets", class_info, info_port_sets_cmd,
-          _("Show information about the task's port sets"),
-          &infolist);
-  add_cmd ("dead-names", class_info, info_dead_names_cmd,
-          _("Show information about the task's dead names"),
-          &infolist);
+  add_info ("send-rights", info_send_rights_cmd,
+           _("Show information about the task's send rights"));
+  add_info ("receive-rights", info_recv_rights_cmd,
+           _("Show information about the task's receive rights"));
+  add_info ("port-rights", info_port_rights_cmd,
+           _("Show information about the task's port rights"));
+  add_info ("port-sets", info_port_sets_cmd,
+           _("Show information about the task's port sets"));
+  add_info ("dead-names", info_dead_names_cmd,
+           _("Show information about the task's dead names"));
   add_info_alias ("ports", "port-rights", 1);
   add_info_alias ("port", "port-rights", 1);
   add_info_alias ("psets", "port-sets", 1);
index aca4fdc953d8513e756d624957b8391c4e89921b..aae3b6d4ea684f93ccaae58e33b003c6ab5de688 100644 (file)
@@ -522,21 +522,18 @@ expression work together to yield a pre-processed expression."),
           &macrolist);
   add_alias_cmd ("exp1", "expand-once", no_class, 1, &macrolist);
 
-  add_cmd ("macro", no_class, info_macro_command,
-          _("Show the definition of MACRO, and it's source location.\n\
+  add_info ("macro", info_macro_command,
+           _("Show the definition of MACRO, and it's source location.\n\
 Usage: info macro [-a|-all] [--] MACRO\n\
 Options: \n\
   -a, --all    Output all definitions of MACRO in the current compilation\
  unit.\n\
-  --           Specify the end of arguments and the beginning of the MACRO."),
+  --           Specify the end of arguments and the beginning of the MACRO."));
 
-          &infolist);
-
-  add_cmd ("macros", no_class, info_macros_command,
-          _("Show the definitions of all macros at LINESPEC, or the current \
+  add_info ("macros", info_macros_command,
+           _("Show the definitions of all macros at LINESPEC, or the current \
 source location.\n\
-Usage: info macros [LINESPEC]"),
-          &infolist);
+Usage: info macros [LINESPEC]"));
 
   add_cmd ("define", no_class, macro_define_command, _("\
 Define a new C/C++ preprocessor macro.\n\