forked from Imagelibrary/binutils-gdb
* cli/cli-decode.h (CMD_ASYNC_OK): New define.
(set_cmd_async_ok, get_cmd_async_ok): Declare. * cli/cli-decode.c (set_cmd_async_ok): New function. (get_cmd_async_ok): New function. * cli/cli-cmds.c (init_cli_cmds): Mark "pwd", "help", "info", and "show" as async-ok. * top.c (execute_command): Use get_cmd_async_ok. * infcmd.c: Include cli/cli-decode.h. (_initialize_infcmd): Mark "interrupt" as async-ok. * Makefile.in (infcmd.o): Depend on cli_decode_h.
This commit is contained in:
@@ -49,6 +49,7 @@
|
||||
#include "target-descriptions.h"
|
||||
#include "user-regs.h"
|
||||
#include "exceptions.h"
|
||||
#include "cli/cli-decode.h"
|
||||
|
||||
/* Functions exported for general use, in inferior.h: */
|
||||
|
||||
@@ -2326,8 +2327,9 @@ You may specify arguments to give to your program, just as with the\n\
|
||||
\"run\" command."));
|
||||
set_cmd_completer (c, filename_completer);
|
||||
|
||||
add_com ("interrupt", class_run, interrupt_target_command,
|
||||
_("Interrupt the execution of the debugged program."));
|
||||
c = add_com ("interrupt", class_run, interrupt_target_command,
|
||||
_("Interrupt the execution of the debugged program."));
|
||||
set_cmd_async_ok (c);
|
||||
|
||||
add_info ("registers", nofp_registers_info, _("\
|
||||
List of integer registers and their contents, for selected stack frame.\n\
|
||||
|
||||
Reference in New Issue
Block a user