diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-03-18 02:26:32 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-03-18 02:26:32 +0000 |
commit | 9986998ef2616860c9e7b56c01a6a0d606623015 (patch) | |
tree | aa0dd3439b807d139f50035ca75ba30002ae0d79 /gdb/command.h | |
parent | 4d51f8300844d119b99c942e59285a8a16f3ab1f (diff) | |
download | gdb-9986998ef2616860c9e7b56c01a6a0d606623015.tar.gz |
* cli/cli-decode.c (cmd_type): New function.
* command.h (cmd_type): Declare.
* infrun.c (set_schedlock_func): Call function cmd_type.
* kod.c (kod_set_os): Call cmd_type.
* cris-tdep.c (cris_version_update): Use function cmd_type.
(cris_mode_update, cris_abi_update): Ditto.
Diffstat (limited to 'gdb/command.h')
-rw-r--r-- | gdb/command.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/command.h b/gdb/command.h index 58574f41428..fffa3be5324 100644 --- a/gdb/command.h +++ b/gdb/command.h @@ -306,6 +306,18 @@ extern int cmd_cfunc_eq (struct cmd_list_element *cmd, extern void execute_cmd_pre_hook (struct cmd_list_element *cmd); extern void execute_cmd_post_hook (struct cmd_list_element *cmd); +/* Return the type of the command. */ +/* NOTE: cagney/2002-03-17: The add_show_from_set() function clones + the set command passed as a parameter. The clone operation will + include (BUG?) any ``set'' command callback, if present. Commands + like ``info set'' call all the ``show'' command callbacks. + Unfortunatly, for ``show'' commands cloned from ``set'', this + includes callbacks belonging to ``set'' commands. Making this + worse, this only occures if add_show_from_set() is called after + add_cmd_sfunc() (BUG?). */ +extern enum cmd_types cmd_type (struct cmd_list_element *cmd); + + extern struct cmd_list_element *lookup_cmd (char **, struct cmd_list_element *, char *, int, int); |