]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/gdbserver/ChangeLog
Add overloads of for_each_thread/find_thread that filter on pid
authorSimon Marchi <simon.marchi@ericsson.com>
Sat, 21 Oct 2017 16:20:21 +0000 (12:20 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Sat, 21 Oct 2017 16:20:21 +0000 (12:20 -0400)
commit4d3bb80e5db40cd2308157db3c446f35ae97a915
tree886f563e207d3cedc783d48de60126f045dd8c94
parenta664f67e50eff30198097d51cec0ec4690abb2a1
Add overloads of for_each_thread/find_thread that filter on pid

It happens often that we want to iterate or find threads restricted to a
given pid.  I think it's worth having an overload to help with this.
Right now there is a single user of each of the find_thread and
for_each_thread overload, but as we replace the usages of find_inferior
with for_each_thread/find_thread, more usages will pop up.

gdb/gdbserver/ChangeLog:

* gdbthread.h (find_thread, for_each_thread): New functions.
* inferiors.c (thread_of_pid): Remove.
(find_any_thread_of_pid): Use find_thread.
* linux-low.c (num_lwps): Use for_each_thread.
gdb/gdbserver/ChangeLog
gdb/gdbserver/gdbthread.h
gdb/gdbserver/inferiors.c
gdb/gdbserver/linux-low.c