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 | 1868c04ebae02e64e51631c2614703b4a294be6b (patch) | |
tree | 6e28234f7e1e80582ef5283f375dc9144bf256d5 /gdb/kod.c | |
parent | 4dae1ae7485e87401ae69bcc4f399c11a089b0d8 (diff) | |
download | gdb-1868c04ebae02e64e51631c2614703b4a294be6b.zip gdb-1868c04ebae02e64e51631c2614703b4a294be6b.tar.gz gdb-1868c04ebae02e64e51631c2614703b4a294be6b.tar.bz2 |
* 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/kod.c')
-rw-r--r-- | gdb/kod.c | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -132,13 +132,16 @@ kod_set_os (char *arg, int from_tty, struct cmd_list_element *command) { char *p; - /* NOTE: cagney/2002-03-17: This function gets called by the command - ``info set'' with COMMAND pointing to a show_cmd rather than a - set command. This the test below is removed, a core dump results - (think about what happens when OPERATING_SYSTEM is NULL). The - wiered thing is that all other ``set'' handlers don't need this - test. */ - if (command->type != set_cmd) + /* 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?). */ + + if (cmd_type (command) != set_cmd) return; /* If we had already had an open OS, close it. */ |