This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-arm in repository toolchain/ci/binutils-gdb.
from 9aecb5778d Automatic date update in version.in adds 7b961964f8 gdbserver: hide fork child threads from GDB adds 4a3ee32a40 gdb/linux-nat: factor ptrace-detach code to new detach_one_p [...] adds a4543480c5 gdb/remote.c: move some things up adds 28561a6559 gdb/remote.c: refactor pending fork status functions adds 577d2167bb gdb: move clearing of tp->pending_follow to follow_fork_inferior adds df5ad10200 gdb, gdbserver: detach fork child when detaching from fork parent new de8a2781a5 sim: use ## for automake comments
The 1 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/infrun.c | 28 +- gdb/linux-nat.c | 129 ++++-- gdb/remote.c | 238 ++++++----- .../gdb.threads/pending-fork-event-detach-ns.c | 114 +++++ .../gdb.threads/pending-fork-event-detach-ns.exp | 121 ++++++ .../pending-fork-event-detach-touch-file.c | 26 ++ .../gdb.threads/pending-fork-event-detach.c | 86 ++++ .../gdb.threads/pending-fork-event-detach.exp | 139 +++++++ gdb/testsuite/lib/gdb.exp | 15 + gdbserver/linux-low.cc | 22 + gdbserver/linux-low.h | 56 +++ gdbserver/server.cc | 35 ++ gdbserver/target.cc | 12 + gdbserver/target.h | 20 + sim/Makefile.am | 10 +- sim/Makefile.in | 463 --------------------- sim/arm/local.mk | 32 +- sim/bpf/local.mk | 34 +- sim/common/local.mk | 42 +- sim/cr16/local.mk | 36 +- sim/cris/local.mk | 44 +- sim/d10v/local.mk | 36 +- sim/erc32/local.mk | 32 +- sim/frv/local.mk | 38 +- sim/igen/local.mk | 44 +- sim/iq2000/local.mk | 38 +- sim/lm32/local.mk | 38 +- sim/m32c/local.mk | 36 +- sim/m32r/local.mk | 42 +- sim/m68hc11/local.mk | 36 +- sim/mn10300/local.mk | 36 +- sim/moxie/local.mk | 32 +- sim/or1k/local.mk | 36 +- sim/ppc/local.mk | 32 +- sim/rx/local.mk | 32 +- sim/sh/local.mk | 36 +- sim/testsuite/common/local.mk | 28 +- sim/testsuite/local.mk | 32 +- sim/v850/local.mk | 36 +- 39 files changed, 1304 insertions(+), 1038 deletions(-) create mode 100644 gdb/testsuite/gdb.threads/pending-fork-event-detach-ns.c create mode 100644 gdb/testsuite/gdb.threads/pending-fork-event-detach-ns.exp create mode 100644 gdb/testsuite/gdb.threads/pending-fork-event-detach-touch-file.c create mode 100644 gdb/testsuite/gdb.threads/pending-fork-event-detach.c create mode 100644 gdb/testsuite/gdb.threads/pending-fork-event-detach.exp