diff options
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/mi/mi-main.c | 17 |
2 files changed, 6 insertions, 17 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 137ccf5..5e290c7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 2008-07-13 Vladimir Prus <vladimir@codesourcery.com> + Enable all commands while inferiour is running + * mi/mi-main.c (mi_cmd_execute): Don't check if + inferiour is executing. + +2008-07-13 Vladimir Prus <vladimir@codesourcery.com> + Allow all CLI command even if target is executing. * gdb/top.c (execute_command_1): Don't check if the inferiour is running. diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index 4a52cbb..733fc47 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -1121,23 +1121,6 @@ mi_cmd_execute (struct mi_parse *parse) error_stream (stb); } - if ((!non_stop && any_running ()) - || (non_stop && is_running (inferior_ptid))) - { - if (strcmp (parse->command, "exec-interrupt")) - { - struct ui_file *stb; - stb = mem_fileopen (); - - fputs_unfiltered ("Cannot execute command ", stb); - fputstr_unfiltered (parse->command, '"', stb); - fputs_unfiltered (" while target running", stb); - - make_cleanup_ui_file_delete (stb); - error_stream (stb); - } - } - parse->cmd->argv_func (parse->command, parse->argv, parse->argc); } else if (parse->cmd->cli.cmd != 0) |