Replace throw_exception with throw in some cases
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-low.c
index 4b1a211ab7a08e10e901c8c4a930de9f06c98b5a..94af240a5c2ce92e7b35e1a9a3b84d9f02ca9806 100644 (file)
@@ -1543,7 +1543,7 @@ linux_detach_one_lwp (struct lwp_info *lwp)
   catch (const gdb_exception_error &ex)
     {
       if (!check_ptrace_stopped_lwp_gone (lwp))
-       throw_exception (ex);
+       throw;
     }
 
   lwpid = lwpid_of (thread);
@@ -4514,7 +4514,7 @@ linux_resume_one_lwp (struct lwp_info *lwp,
   catch (const gdb_exception_error &ex)
     {
       if (!check_ptrace_stopped_lwp_gone (lwp))
-       throw_exception (ex);
+       throw;
     }
 }
 
This page took 0.034219 seconds and 4 git commands to generate.