diff options
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 1d6ac90..7830e67 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -5165,7 +5165,7 @@ interrupt_query (void) if (target_can_async_p ()) { signal (SIGINT, handle_sigint); - deprecated_throw_reason (RETURN_QUIT); + quit (); } else { @@ -5173,7 +5173,7 @@ interrupt_query (void) Give up (and stop debugging it)? "))) { remote_unpush_target (); - deprecated_throw_reason (RETURN_QUIT); + quit (); } } |