diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-08-04 23:18:50 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-08-04 23:18:50 +0000 |
commit | b2af646b30c37166ffdbe80a338b8a8ff9cca264 (patch) | |
tree | 369861d397c5802517c321aaf933950c1597f029 /gdb/mi/mi-cmds.h | |
parent | fcc1c85c675ef402ac37ecf4f7a1377f560d0ec0 (diff) | |
download | gdb-b2af646b30c37166ffdbe80a338b8a8ff9cca264.zip gdb-b2af646b30c37166ffdbe80a338b8a8ff9cca264.tar.gz gdb-b2af646b30c37166ffdbe80a338b8a8ff9cca264.tar.bz2 |
2003-08-04 Andrew Cagney <cagney@redhat.com>
* mi-cmds.h (struct mi_cli): Define.
(struct mi_cmd): Change type of "cli" to "struct mi_cli".
* mi-cmds.c (mi_cmds): Update table.
* mi-parse.c (mi_parse): Update.
* mi-main.c (mi_execute_cli_command): Add "args_p" parameter, make
others constant.
(mi_cmd_execute): Update call.
(captured_mi_execute_command): Ditto.
Diffstat (limited to 'gdb/mi/mi-cmds.h')
-rw-r--r-- | gdb/mi/mi-cmds.h | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/gdb/mi/mi-cmds.h b/gdb/mi/mi-cmds.h index b0c8cb8..efcf0b5 100644 --- a/gdb/mi/mi-cmds.h +++ b/gdb/mi/mi-cmds.h @@ -108,18 +108,26 @@ extern mi_cmd_argv_ftype mi_cmd_var_update; /* Description of a single command. */ +struct mi_cli +{ + /* Corresponding CLI command. If ARGS_P is non-zero, the MI + command's argument list is appended to the CLI command. */ + const char *cmd; + int args_p; +}; + struct mi_cmd - { - /* official name of the command */ - const char *name; - /* If non-null, the corresponding CLI command that can be used to - implement this MI command */ - const char *cli; - /* If non-null, the function implementing the MI command */ - mi_cmd_args_ftype *args_func; - /* If non-null, the function implementing the MI command */ - mi_cmd_argv_ftype *argv_func; - }; +{ + /* official name of the command. */ + const char *name; + /* The corresponding CLI command that can be used to implement this + MI command (if cli.lhs is non NULL). */ + struct mi_cli cli; + /* If non-null, the function implementing the MI command. */ + mi_cmd_args_ftype *args_func; + /* If non-null, the function implementing the MI command. */ + mi_cmd_argv_ftype *argv_func; +}; /* Lookup a command in the mi comand table */ |