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 0e33957abf8 Automatic date update in version.in new 2ab76a181f3 Fix attaching in non-stop mode (PR gdb/27055) new 621cc310717 Fix "target extended-remote" + "maint set target-non-stop" [...] new 92234eb192f Testcase for attaching in non-stop mode new b0083dd72fc Fix a couple vStopped pending ack bugs new 7e9cf1fe361 gdbserver: spurious SIGTRAP w/ detach while step-over in progress new d758e62c0ec Factor out after-stop event handling code from stop_all_threads new 9147506842a prepare_for_detach: don't release scoped_restore at the end new 8ff531399b7 prepare_for_detach and ongoing displaced stepping new e87f0fe8237 detach and breakpoint removal new ac7d717c1eb detach with in-line step over in progress new 408f66864a1 detach in all-stop with threads running new a71501e25ff Testcase for detaching while stepping over breakpoint
The 12 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 | 61 ++ gdb/infcmd.c | 13 + gdb/infrun.c | 635 ++++++++++++--------- gdb/infrun.h | 4 + gdb/linux-nat.c | 5 + gdb/remote.c | 39 +- gdb/target.c | 9 - gdb/target.h | 7 + gdb/testsuite/ChangeLog | 10 + .../tids.c => gdb.threads/attach-non-stop.c} | 40 +- gdb/testsuite/gdb.threads/attach-non-stop.exp | 148 +++++ gdb/testsuite/gdb.threads/detach-step-over.c | 112 ++++ gdb/testsuite/gdb.threads/detach-step-over.exp | 290 ++++++++++ gdbserver/ChangeLog | 10 + gdbserver/linux-low.cc | 29 +- gdbserver/server.cc | 9 + 16 files changed, 1117 insertions(+), 304 deletions(-) copy gdb/testsuite/{gdb.multi/tids.c => gdb.threads/attach-non-stop.c} (64%) create mode 100644 gdb/testsuite/gdb.threads/attach-non-stop.exp create mode 100644 gdb/testsuite/gdb.threads/detach-step-over.c create mode 100644 gdb/testsuite/gdb.threads/detach-step-over.exp