Remove usage of find_inferior in lynx_mourn

Replace it with for_each_thread with pid filtering.  We can remove
lynx_delete_thread_callback and pass remove_thread directly.

I can't build/test this change, but it should be obvious enough.

gdb/gdbserver/ChangeLog:

	* lynx.low (lynx_delete_thread_callback): Remove.
	(lynx_mourn): Use for_each_thread.
This commit is contained in:
Simon Marchi 2017-12-02 20:36:32 -05:00
parent 634a3254c8
commit c91bb56b06
2 changed files with 6 additions and 15 deletions

View File

@ -1,3 +1,8 @@
2017-12-02 Simon Marchi <simon.marchi@polymtl.ca>
* lynx.low (lynx_delete_thread_callback): Remove.
(lynx_mourn): Use for_each_thread.
2017-12-02 Simon Marchi <simon.marchi@polymtl.ca>
* regcache.c (regcache_invalidate_one): Remove.

View File

@ -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);