aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-02-18 20:57:16 +0000
committerAndrew Cagney <cagney@redhat.com>2005-02-18 20:57:16 +0000
commitc0d88b1be7e38d98b52218f9c673eecb5fcd5851 (patch)
treef2342442ca6de71bcd41a5e28fddfb94f4270f40
parent35096d9d67ac1c2bc69fff09e23849df4c238233 (diff)
downloadbinutils-c0d88b1be7e38d98b52218f9c673eecb5fcd5851.zip
binutils-c0d88b1be7e38d98b52218f9c673eecb5fcd5851.tar.gz
binutils-c0d88b1be7e38d98b52218f9c673eecb5fcd5851.tar.bz2
2005-02-18 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_integer_cmd): New function. * command.h (add_setshow_integer_cmd): Declare. * cli/cli-cmds.c: Update.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/cli/cli-cmds.c25
-rw-r--r--gdb/cli/cli-decode.c21
-rw-r--r--gdb/command.h11
4 files changed, 50 insertions, 11 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c39be4e..860b76d 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2005-02-18 Andrew Cagney <cagney@gnu.org>
+ * cli/cli-decode.c (add_setshow_integer_cmd): New function.
+ * command.h (add_setshow_integer_cmd): Declare.
+ * cli/cli-cmds.c: Update.
+
Use add_setshow_uinteger_cmd through out.
* printcmd.c, source.c, utils.c, valprint.c: Update.
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c
index 4f265b8..de8a029 100644
--- a/gdb/cli/cli-cmds.c
+++ b/gdb/cli/cli-cmds.c
@@ -1199,12 +1199,14 @@ is displayed."),
NULL, /* FIXME: i18n: */
&setdebuglist, &showdebuglist);
- deprecated_add_show_from_set
- (add_set_cmd ("remotetimeout", no_class, var_integer, (char *) &remote_timeout,
- "Set timeout limit to wait for target to respond.\n\
+ add_setshow_integer_cmd ("remotetimeout", no_class, &remote_timeout, _("\
+Set timeout limit to wait for target to respond."), _("\
+Show timeout limit to wait for target to respond."), _("\
This value is used to set the time limit for gdb to wait for a response\n\
-from the target.", &setlist),
- &showlist);
+from the target."),
+ NULL,
+ NULL, /* FIXME: i18n: */
+ &setlist, &showlist);
add_prefix_cmd ("debug", no_class, set_debug,
_("Generic command for setting gdb debugging flags"),
@@ -1281,10 +1283,11 @@ With no argument, show definitions of all user defined commands."), &showlist);
add_com ("apropos", class_support, apropos_command,
_("Search for commands matching a REGEXP"));
- deprecated_add_show_from_set
- (add_set_cmd ("max-user-call-depth", no_class, var_integer,
- (char *) &max_user_call_depth,
- "Set the max call depth for user-defined commands.\n",
- &setlist),
- &showlist);
+ add_setshow_integer_cmd ("max-user-call-depth", no_class,
+ &max_user_call_depth, _("\
+Set the max call depth for user-defined commands."), _("\
+Show the max call depth for user-defined commands."), NULL,
+ NULL,
+ NULL, /* FIXME: i18n: */
+ &setlist, &showlist);
}
diff --git a/gdb/cli/cli-decode.c b/gdb/cli/cli-decode.c
index f9e2925..ec2f734 100644
--- a/gdb/cli/cli-decode.c
+++ b/gdb/cli/cli-decode.c
@@ -540,6 +540,27 @@ add_setshow_string_noescape_cmd (char *name, enum command_class class,
add_cmd. VAR is address of the variable which will contain the
value. SET_DOC and SHOW_DOC are the documentation strings. */
void
+add_setshow_integer_cmd (char *name, enum command_class class,
+ unsigned int *var,
+ const char *set_doc, const char *show_doc,
+ const char *help_doc,
+ cmd_sfunc_ftype *set_func,
+ show_value_ftype *show_func,
+ struct cmd_list_element **set_list,
+ struct cmd_list_element **show_list)
+{
+ add_setshow_cmd_full (name, class, var_integer, var,
+ set_doc, show_doc, help_doc,
+ set_func, show_func,
+ set_list, show_list,
+ NULL, NULL);
+}
+
+/* Add element named NAME to both the set and show command LISTs (the
+ list for set/show or some sublist thereof). CLASS is as in
+ add_cmd. VAR is address of the variable which will contain the
+ value. SET_DOC and SHOW_DOC are the documentation strings. */
+void
add_setshow_uinteger_cmd (char *name, enum command_class class,
unsigned int *var,
const char *set_doc, const char *show_doc,
diff --git a/gdb/command.h b/gdb/command.h
index 01eb0de..dcebe49 100644
--- a/gdb/command.h
+++ b/gdb/command.h
@@ -301,6 +301,17 @@ extern void add_setshow_string_noescape_cmd (char *name,
struct cmd_list_element **set_list,
struct cmd_list_element **show_list);
+extern void add_setshow_integer_cmd (char *name,
+ enum command_class class,
+ unsigned int *var,
+ const char *set_doc,
+ const char *show_doc,
+ const char *help_doc,
+ cmd_sfunc_ftype *set_func,
+ show_value_ftype *show_func,
+ struct cmd_list_element **set_list,
+ struct cmd_list_element **show_list);
+
extern void add_setshow_uinteger_cmd (char *name,
enum command_class class,
unsigned int *var,