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 198ff6ff819 gdb/gdbserver: share x86/linux tdesc caching new 07505b613a0 Revert "gdb: remove unnecessary parameter wait_ptid from do [...] new 3df7843699f gdb: fix b/p conditions with infcalls in multi-threaded inferiors new 29f7ef927ad gdb: add timeouts for inferior function calls new fe67b24240d gdb: introduce unwind-on-timeout setting new 7879fba359f gdb: rename unwindonsignal to unwind-on-signal
The 5 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/NEWS | 36 +++ gdb/breakpoint.c | 2 + gdb/doc/gdb.texinfo | 111 +++++++- gdb/gdbthread.h | 3 + gdb/infcall.c | 301 ++++++++++++++++++++- gdb/infrun.c | 70 +++-- gdb/infrun.h | 3 +- gdb/testsuite/gdb.base/callfuncs.exp | 4 +- gdb/testsuite/gdb.base/help.exp | 2 +- gdb/testsuite/gdb.base/infcall-failure.exp | 4 +- .../mi-corefile.c => gdb.base/infcall-timeout.c} | 17 +- gdb/testsuite/gdb.base/infcall-timeout.exp | 115 ++++++++ gdb/testsuite/gdb.base/unwindonsignal.exp | 36 ++- gdb/testsuite/gdb.compile/compile-cplus.exp | 6 +- gdb/testsuite/gdb.compile/compile.exp | 6 +- gdb/testsuite/gdb.cp/gdb2495.exp | 16 +- gdb/testsuite/gdb.fortran/function-calls.exp | 2 +- gdb/testsuite/gdb.mi/mi-condbreak-fail.exp | 6 +- gdb/testsuite/gdb.mi/mi-condbreak-throw.exp | 2 +- gdb/testsuite/gdb.mi/mi-syn-frame.exp | 2 +- .../infcall-from-bp-cond-other-thread-event.c | 135 +++++++++ .../infcall-from-bp-cond-other-thread-event.exp | 174 ++++++++++++ .../infcall-from-bp-cond-simple.c} | 74 +++-- .../gdb.threads/infcall-from-bp-cond-simple.exp | 235 ++++++++++++++++ .../gdb.threads/infcall-from-bp-cond-single.c | 139 ++++++++++ .../gdb.threads/infcall-from-bp-cond-single.exp | 117 ++++++++ .../gdb.threads/infcall-from-bp-cond-timeout.c | 169 ++++++++++++ .../gdb.threads/infcall-from-bp-cond-timeout.exp | 191 +++++++++++++ .../gdb.threads/thread-unwindonsignal.exp | 8 +- 29 files changed, 1880 insertions(+), 106 deletions(-) copy gdb/testsuite/{gdb.mi/mi-corefile.c => gdb.base/infcall-timeout.c} (82%) create mode 100644 gdb/testsuite/gdb.base/infcall-timeout.exp create mode 100644 gdb/testsuite/gdb.threads/infcall-from-bp-cond-other-thread-event.c create mode 100644 gdb/testsuite/gdb.threads/infcall-from-bp-cond-other-thread-event.exp copy gdb/testsuite/{gdb.mi/interrupt-thread-group.c => gdb.threads/infcall-from-bp [...] create mode 100644 gdb/testsuite/gdb.threads/infcall-from-bp-cond-simple.exp create mode 100644 gdb/testsuite/gdb.threads/infcall-from-bp-cond-single.c create mode 100644 gdb/testsuite/gdb.threads/infcall-from-bp-cond-single.exp create mode 100644 gdb/testsuite/gdb.threads/infcall-from-bp-cond-timeout.c create mode 100644 gdb/testsuite/gdb.threads/infcall-from-bp-cond-timeout.exp