diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/infcmd.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ca1a7ef..f246016 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2008-08-14 Pedro Alves <pedro@codesourcery.com> + + * infcmd.c (continue_1): Add an ERROR_NO_INFERIOR call. + 2008-08-13 Pedro Alves <pedro@codesourcery.com> * breakpoint.c (always_inserted_auto, always_inserted_on) diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 572555c..82d4710 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -614,6 +614,8 @@ proceed_thread_callback (struct thread_info *thread, void *arg) void continue_1 (int all_threads) { + ERROR_NO_INFERIOR; + if (non_stop && all_threads) { /* Don't error out if the current thread is running, because |