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 f557a88ab1 gdbserver: Remove traces of ancient Hc handling new e04ee09e24 Add target method for converting thread handle to thread_inf [...] new fbbe5337a6 Add `thread_from_thread_handle' method to (Python) gdb.Inferior new da2c323bff Documentation for Inferior.thread_from_thread_handle new 8629910955 Add thread_db_notice_clone to gdbserver new f6327dcbf0 Add thread_handle_to_thread_info support for remote targets new f2ff95c583 Documentation for qXfer:threads:read handle attribute new 757bf54bb4 Test case for Inferior.thread_from_thread_handle
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/ChangeLog | 37 +++++++++++ gdb/doc/ChangeLog | 10 +++ gdb/doc/gdb.texinfo | 4 +- gdb/doc/python.texi | 7 ++ gdb/gdbserver/ChangeLog | 20 ++++++ gdb/gdbserver/linux-low.c | 7 ++ gdb/gdbserver/linux-low.h | 11 ++++ gdb/gdbserver/server.c | 10 +++ gdb/gdbserver/target.h | 10 +++ gdb/gdbserver/thread-db.c | 48 ++++++++++++++ gdb/gdbthread.h | 4 ++ gdb/linux-thread-db.c | 32 ++++++++++ gdb/python/py-inferior.c | 54 ++++++++++++++++ gdb/python/python-internal.h | 2 + gdb/remote.c | 59 +++++++++++++++++ gdb/target-delegates.c | 37 +++++++++++ gdb/target.c | 9 +++ gdb/target.h | 11 ++++ gdb/testsuite/ChangeLog | 5 ++ gdb/testsuite/gdb.python/py-thrhandle.c | 94 +++++++++++++++++++++++++++ gdb/testsuite/gdb.python/py-thrhandle.exp | 102 ++++++++++++++++++++++++++++++ gdb/thread.c | 12 ++++ 22 files changed, 584 insertions(+), 1 deletion(-) create mode 100644 gdb/testsuite/gdb.python/py-thrhandle.c create mode 100644 gdb/testsuite/gdb.python/py-thrhandle.exp