diff options
-rw-r--r-- | gdb/remote.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 6dacc24..2f15c4c 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -5968,7 +5968,12 @@ extended_remote_target::attach (const char *args, int from_tty) } } else - gdb_assert (wait_status == NULL); + { + gdb_assert (wait_status == NULL); + + gdb_assert (target_can_async_p ()); + target_async (1); + } } /* Implementation of the to_post_attach method. */ |