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 9aecb5778de Automatic date update in version.in new 7b961964f86 gdbserver: hide fork child threads from GDB new 4a3ee32a402 gdb/linux-nat: factor ptrace-detach code to new detach_one_ [...] new a4543480c5e gdb/remote.c: move some things up new 28561a65594 gdb/remote.c: refactor pending fork status functions new 577d2167bbe gdb: move clearing of tp->pending_follow to follow_fork_inferior new df5ad102009 gdb, gdbserver: detach fork child when detaching from fork parent
The 6 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 ++ 14 files changed, 885 insertions(+), 156 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