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 e49831ba434 Add 128-bit integer support to the Ada parser new 4a1283c8d56 gdb: pass execing and following inferior to inferior_execd [...] new f56944000c0 gdb: add inferior_forked observable new 2b214d3e3b5 gdb: remove regcache::target new 348da4565b5 gdb: add maybe_switch_inferior function new 98994c7a183 gdb: make regcache::raw_update switch to right inferior new 9145fd43029 gdb: switch to right inferior in fetch_inferior_event new 5f6d638d3cb gdb/amdgpu: add follow fork and exec support
The 7 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/amd-dbgapi-target.c | 39 ++++++++++ gdb/gdbthread.h | 2 + gdb/inferior.c | 15 ++++ gdb/inferior.h | 7 ++ gdb/infrun.c | 53 +++++++------ gdb/jit.c | 20 +++-- gdb/linux-tdep.c | 10 ++- gdb/observable.c | 1 + gdb/observable.h | 17 +++- gdb/record-btrace.c | 3 +- gdb/regcache.c | 90 ++++++++++++++-------- gdb/regcache.h | 22 +++--- gdb/solib.c | 3 +- .../gdb.rocm/fork-exec-gpu-to-non-gpu-execee.cpp | 27 +++++++ .../gdb.rocm/fork-exec-gpu-to-non-gpu-execer.cpp | 55 +++++++++++++ .../gdb.rocm/fork-exec-gpu-to-non-gpu.exp | 89 +++++++++++++++++++++ .../gdb.rocm/fork-exec-non-gpu-to-gpu-execee.cpp | 36 +++++++++ .../gdb.rocm/fork-exec-non-gpu-to-gpu-execer.cpp | 46 +++++++++++ .../gdb.rocm/fork-exec-non-gpu-to-gpu.exp | 88 +++++++++++++++++++++ gdb/thread.c | 14 ++++ 20 files changed, 561 insertions(+), 76 deletions(-) create mode 100644 gdb/testsuite/gdb.rocm/fork-exec-gpu-to-non-gpu-execee.cpp create mode 100644 gdb/testsuite/gdb.rocm/fork-exec-gpu-to-non-gpu-execer.cpp create mode 100644 gdb/testsuite/gdb.rocm/fork-exec-gpu-to-non-gpu.exp create mode 100644 gdb/testsuite/gdb.rocm/fork-exec-non-gpu-to-gpu-execee.cpp create mode 100644 gdb/testsuite/gdb.rocm/fork-exec-non-gpu-to-gpu-execer.cpp create mode 100644 gdb/testsuite/gdb.rocm/fork-exec-non-gpu-to-gpu.exp