This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-stable-allmodconfig in repository toolchain/binutils-gdb.
from 79a9468c70 Automatic date update in version.in adds 151bb4a505 Avoid find_thread_ptid with null_ptid adds c4c17fb0f5 Fix follow_exec latent problem adds 0803633106 Per-inferior thread list, thread ranges/iterators, down with [...] adds 8e4b639201 Automatic date update in version.in
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- 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 +- 41 files changed, 1433 insertions(+), 836 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