diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2008-07-26 10:23:56 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2008-07-26 10:23:56 +0000 |
commit | d72314c67b7cc65ae935ad3dd80a6b1840b57d1a (patch) | |
tree | 6f6840897f0e48ea17d0eb334cbf711e2f076ca3 /gdb/infcmd.c | |
parent | 1ce4cec447b83c0519170e19b069aa73d29c768b (diff) | |
download | gdb-d72314c67b7cc65ae935ad3dd80a6b1840b57d1a.zip gdb-d72314c67b7cc65ae935ad3dd80a6b1840b57d1a.tar.gz gdb-d72314c67b7cc65ae935ad3dd80a6b1840b57d1a.tar.bz2 |
Kill cmd_async_ok.
* cli/cli-decode.h (CMD_ASYNC_OK, set_cmd_async_ok)
(get_cmd_async_ok): Remove.
* cli/cli-decode.c (set_cmd_async_ok, get_cmd_async_ok): Remove.
* cli/cli-cmds.c (init_cli_cmds): Don't use set_cmd_async_ok.
* infcmd.c (_initialize_infcmd): Likewise.
* thread.c (_initialize_thread): Likewise.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 8184cf0..e4198b5 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -2390,7 +2390,6 @@ continue all stopped threads in non-stop mode, use the -a option.\n\ Specifying -a and an ignore count simultaneously is an error.")); add_com_alias ("c", "cont", class_run, 1); add_com_alias ("fg", "cont", class_run, 1); - set_cmd_async_ok (c); c = add_com ("run", class_run, run_command, _("\ Start debugged program. You may specify arguments to give it.\n\ @@ -2416,7 +2415,6 @@ You may specify arguments to give to your program, just as with the\n\ If non-stop mode is enabled, interrupt only the current thread,\n\ otherwise all the threads in the program are stopped. To \n\ interrupt all running threads in non-stop mode, use the -a option.")); - set_cmd_async_ok (c); add_info ("registers", nofp_registers_info, _("\ List of integer registers and their contents, for selected stack frame.\n\ |