diff options
author | Tom Tromey <tromey@redhat.com> | 2008-04-17 00:25:01 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2008-04-17 00:25:01 +0000 |
commit | 700b53b17a52448cb49f04a4e27d5f0130537924 (patch) | |
tree | c6c9be0bfe988471b3e3c8c23096b7669d8c202d /gdb/Makefile.in | |
parent | f3c69fcab18257246fa945f4a85388b54a34e512 (diff) | |
download | gdb-700b53b17a52448cb49f04a4e27d5f0130537924.zip gdb-700b53b17a52448cb49f04a4e27d5f0130537924.tar.gz gdb-700b53b17a52448cb49f04a4e27d5f0130537924.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 6cd77f1..bdee30d 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2314,7 +2314,7 @@ infcmd.o: infcmd.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ $(objfiles_h) $(completer_h) $(ui_out_h) $(event_top_h) \ $(parser_defs_h) $(regcache_h) $(reggroups_h) $(block_h) \ $(solib_h) $(gdb_assert_h) $(observer_h) $(target_descriptions_h) \ - $(user_regs_h) $(exceptions_h) + $(user_regs_h) $(exceptions_h) $(cli_decode_h) inf-loop.o: inf-loop.c $(defs_h) $(inferior_h) $(target_h) $(event_loop_h) \ $(event_top_h) $(inf_loop_h) $(remote_h) $(exceptions_h) \ $(language_h) |