mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 08:24:05 +08:00
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:
@ -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>
|
2017-12-02 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
* regcache.c (regcache_invalidate_one): Remove.
|
* regcache.c (regcache_invalidate_one): Remove.
|
||||||
|
@ -555,26 +555,12 @@ lynx_detach (int pid)
|
|||||||
return 0;
|
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. */
|
/* Implement the mourn target_ops method. */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
lynx_mourn (struct process_info *proc)
|
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 our private data. */
|
||||||
free (proc->priv);
|
free (proc->priv);
|
||||||
|
Reference in New Issue
Block a user