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 2d7cc5c797 Introduce compiled_regex, eliminate make_regfree_cleanup new 156525114c Move parts of inferior job control to common/ new 043a49349c Share parts of gdb/gdbthread.h with gdbserver new 2090129c36 Share fork_inferior et al with gdbserver new aefd8b33d9 Implement proper "startup-with-shell" support on gdbserver
The 4 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 | 103 ++++ gdb/Makefile.in | 6 + gdb/NEWS | 17 + gdb/common/common-gdbthread.h | 25 + gdb/common/common-inferior.h | 33 ++ gdb/common/common-utils.c | 24 + gdb/common/common-utils.h | 4 + gdb/common/job-control.c | 93 ++++ gdb/{terminal.h => common/job-control.h} | 47 +- gdb/configure.nat | 8 +- gdb/corefile.c | 4 +- gdb/darwin-nat.c | 16 +- gdb/doc/ChangeLog | 8 + gdb/doc/gdb.texinfo | 39 ++ gdb/fork-child.c | 629 +++------------------- gdb/gdbcore.h | 6 - gdb/gdbserver/ChangeLog | 90 ++++ gdb/gdbserver/Makefile.in | 3 + gdb/gdbserver/configure.srv | 6 +- gdb/gdbserver/fork-child.c | 113 ++++ gdb/gdbserver/inferiors.c | 9 + gdb/gdbserver/linux-low.c | 91 ++-- gdb/gdbserver/lynx-low.c | 51 +- gdb/gdbserver/nto-low.c | 10 +- gdb/gdbserver/server.c | 278 +++++----- gdb/gdbserver/server.h | 14 + gdb/gdbserver/spu-low.c | 44 +- gdb/gdbserver/target.c | 27 + gdb/gdbserver/target.h | 13 +- gdb/gdbserver/win32-low.c | 23 +- gdb/gdbthread.h | 5 +- gdb/gnu-nat.c | 8 +- gdb/inf-ptrace.c | 15 +- gdb/inferior.h | 34 +- gdb/inflow.c | 64 +-- gdb/{fork-child.c => nat/fork-inferior.c} | 247 +++------ gdb/nat/fork-inferior.h | 106 ++++ gdb/procfs.c | 7 +- gdb/remote.c | 20 + gdb/target.h | 18 +- gdb/target/target.h | 14 + gdb/terminal.h | 12 - gdb/testsuite/ChangeLog | 11 + gdb/testsuite/gdb.base/startup-with-shell.c | 29 + gdb/testsuite/gdb.base/startup-with-shell.exp | 89 +++ gdb/testsuite/gdb.server/non-existing-program.exp | 12 +- gdb/top.c | 1 + gdb/utils.c | 5 +- 48 files changed, 1386 insertions(+), 1145 deletions(-) create mode 100644 gdb/common/common-gdbthread.h create mode 100644 gdb/common/common-inferior.h create mode 100644 gdb/common/job-control.c copy gdb/{terminal.h => common/job-control.h} (50%) create mode 100644 gdb/gdbserver/fork-child.c copy gdb/{fork-child.c => nat/fork-inferior.c} (74%) create mode 100644 gdb/nat/fork-inferior.h create mode 100644 gdb/testsuite/gdb.base/startup-with-shell.c create mode 100644 gdb/testsuite/gdb.base/startup-with-shell.exp