diff options
Diffstat (limited to 'gdb/gdbserver/linux-low.c')
-rw-r--r-- | gdb/gdbserver/linux-low.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index 6ca79d5f527..4b1a211ab7a 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -1540,7 +1540,7 @@ linux_detach_one_lwp (struct lwp_info *lwp) if (the_low_target.prepare_to_resume != NULL) the_low_target.prepare_to_resume (lwp); } - catch (const gdb_exception_RETURN_MASK_ERROR &ex) + catch (const gdb_exception_error &ex) { if (!check_ptrace_stopped_lwp_gone (lwp)) throw_exception (ex); @@ -4511,7 +4511,7 @@ linux_resume_one_lwp (struct lwp_info *lwp, { linux_resume_one_lwp_throw (lwp, step, signal, info); } - catch (const gdb_exception_RETURN_MASK_ERROR &ex) + catch (const gdb_exception_error &ex) { if (!check_ptrace_stopped_lwp_gone (lwp)) throw_exception (ex); |