diff options
Diffstat (limited to 'gdb/gdbserver/lynx-low.c')
-rw-r--r-- | gdb/gdbserver/lynx-low.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/gdb/gdbserver/lynx-low.c b/gdb/gdbserver/lynx-low.c index ca9adc4..6039364 100644 --- a/gdb/gdbserver/lynx-low.c +++ b/gdb/gdbserver/lynx-low.c @@ -555,26 +555,12 @@ lynx_detach (int pid) return 0; } -/* A callback for find_inferior which removes from the thread list - all threads belonging to process PROC. */ - -static int -lynx_delete_thread_callback (thread_info *thread, void *proc) -{ - struct process_info *process = (struct process_info *) proc; - - if (thread->id.pid () == pid_of (process)) - remove_thread (thread); - - return 0; -} - /* Implement the mourn target_ops method. */ static void lynx_mourn (struct process_info *proc) { - find_inferior (&all_threads, lynx_delete_thread_callback, proc); + for_each_thread (proc->pid, remove_thread); /* Free our private data. */ free (proc->priv); |