summaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2008-03-14 07:59:32 +0000
committerPedro Alves <palves@redhat.com>2008-03-14 07:59:32 +0000
commit0b4e556cc755b45b35d5a50e905bebc707246d19 (patch)
tree36aacbb36ee7dfd8d2a95473513ef3c5b20bbc7a /gdb/top.c
parentbe3e620119165a017266af64ae310cd6343a370a (diff)
downloadbinutils-gdb-0b4e556cc755b45b35d5a50e905bebc707246d19.tar.gz
* top.c (execute_command): Enable break, info and interrupt
commands in async mode.
Diffstat (limited to 'gdb/top.c')
-rw-r--r--gdb/top.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/top.c b/gdb/top.c
index 9ad2f54a179..ded24a3aacb 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -405,7 +405,10 @@ execute_command (char *p, int from_tty)
if (strcmp (c->name, "help") != 0
&& strcmp (c->name, "pwd") != 0
&& strcmp (c->name, "show") != 0
- && strcmp (c->name, "stop") != 0)
+ && strcmp (c->name, "stop") != 0
+ && strcmp (c->name, "break") != 0
+ && strcmp (c->name, "info") != 0
+ && strcmp (c->name, "interrupt") != 0)
error (_("Cannot execute this command while the target is running."));
/* Pass null arg rather than an empty one. */