This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 79a9468c70 Automatic date update in version.in new 151bb4a505 Avoid find_thread_ptid with null_ptid new c4c17fb0f5 Fix follow_exec latent problem new 0803633106 Per-inferior thread list, thread ranges/iterators, down with [...]
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/ChangeLog | 186 ++++++++++++++++++++++ gdb/Makefile.in | 1 + gdb/breakpoint.c | 7 +- gdb/bsd-kvm.c | 3 +- gdb/btrace.c | 4 +- gdb/cli/cli-interp.c | 4 +- gdb/common/filtered-iterator.h | 87 +++++++++++ gdb/common/safe-iterator.h | 93 +++++++++++ gdb/corelow.c | 6 - gdb/darwin-nat.c | 10 +- gdb/fbsd-nat.c | 21 +-- gdb/fbsd-tdep.c | 6 +- gdb/fork-child.c | 7 +- gdb/gdbarch-selftests.c | 2 +- gdb/gdbthread.h | 94 +++++++---- gdb/infcmd.c | 69 +++----- gdb/inferior-iter.h | 117 ++++++++++++++ gdb/inferior.c | 142 ++++++----------- gdb/inferior.h | 91 ++++++++--- gdb/inflow.c | 6 +- gdb/infrun.c | 228 +++++++++++---------------- gdb/linux-nat.c | 43 +++-- gdb/linux-tdep.c | 6 +- gdb/linux-thread-db.c | 8 +- gdb/mi/mi-interp.c | 60 +++---- gdb/mi/mi-main.c | 5 +- gdb/nto-procfs.c | 2 - gdb/python/py-inferior.c | 4 +- gdb/record-btrace.c | 72 +++------ gdb/record-full.c | 4 +- gdb/regcache.c | 3 - gdb/remote-sim.c | 3 - gdb/remote.c | 77 +++------ gdb/target.c | 8 +- gdb/thread-iter.c | 101 ++++++++++++ gdb/thread-iter.h | 311 ++++++++++++++++++++++++++++++++++++ gdb/thread.c | 346 ++++++++++++----------------------------- gdb/tid-parse.c | 12 +- gdb/tui/tui-interp.c | 4 +- gdb/x86-bsd-nat.c | 14 +- 40 files changed, 1432 insertions(+), 835 deletions(-) create mode 100644 gdb/common/filtered-iterator.h create mode 100644 gdb/common/safe-iterator.h create mode 100644 gdb/inferior-iter.h create mode 100644 gdb/thread-iter.c create mode 100644 gdb/thread-iter.h