Linux: Use kill_lwp/tkill instead of kill when killing a process
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-low.c
index 0f4dbe2ebbc037fccb71efc348250967e9302268..521d9a226b8f00fe3957155a0653f74f25de7cb6 100644 (file)
@@ -895,7 +895,7 @@ linux_kill_one_lwp (struct lwp_info *lwp)
      everywhere.  */
 
   errno = 0;
-  kill (pid, SIGKILL);
+  kill_lwp (pid, SIGKILL);
   if (debug_threads)
     {
       int save_errno = errno;
This page took 0.02374 seconds and 4 git commands to generate.