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 abfdb09f011 RISC-V: The vtype immediate with more than the defined 8 bi [...] new 0e3b7c25eea gdb/python: introduce gdb.TargetConnection object type new e5b176f25ff gdb: make packet_command function available outside remote.c new 24b2de7b776 gdb/python: add gdb.RemoteTargetConnection.send_packet
The 3 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/Makefile.in | 1 + gdb/NEWS | 29 ++ gdb/doc/gdb.texinfo | 4 + gdb/doc/python.texi | 157 +++++- gdb/observable.c | 1 + gdb/observable.h | 3 + gdb/python/py-all-events.def | 1 + gdb/python/py-connection.c | 570 +++++++++++++++++++++ gdb/python/py-event-types.def | 5 + gdb/python/py-inferior.c | 16 + gdb/python/python-internal.h | 6 + gdb/python/python.c | 5 + gdb/remote.c | 117 +++-- gdb/remote.h | 43 ++ gdb/target-connection.c | 4 + .../gdb.multi/multi-target-info-inferiors.exp | 38 ++ .../gdb.multi/multi-target-info-inferiors.py | 64 +++ gdb/testsuite/gdb.python/py-connection.c | 22 + gdb/testsuite/gdb.python/py-connection.exp | 75 +++ gdb/testsuite/gdb.python/py-inferior.exp | 20 +- gdb/testsuite/gdb.python/py-send-packet.c | 31 ++ gdb/testsuite/gdb.python/py-send-packet.exp | 99 ++++ gdb/testsuite/gdb.python/py-send-packet.py | 176 +++++++ 23 files changed, 1448 insertions(+), 39 deletions(-) create mode 100644 gdb/python/py-connection.c create mode 100644 gdb/testsuite/gdb.multi/multi-target-info-inferiors.py create mode 100644 gdb/testsuite/gdb.python/py-connection.c create mode 100644 gdb/testsuite/gdb.python/py-connection.exp create mode 100644 gdb/testsuite/gdb.python/py-send-packet.c create mode 100644 gdb/testsuite/gdb.python/py-send-packet.exp create mode 100644 gdb/testsuite/gdb.python/py-send-packet.py