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 e70a723 Fix syntax error in annota-input-while-running.exp new 6610dc6 change some variable's type to op_err new e5e27b0 ia64: use XOBNEW and XOBNEWVEC new b19e0ae ft32: fixup TARGET_FORMAT new 049efc6 mmix: constify handler_charp new c023823 d30v: make var type operatorT new cc34adb xtensa: make map_suffix_reloc_to_operator return operatorT new 4512daf MIPS/GAS: Cut TLS reloc dead code path in `md_apply_fix' new 44d3da2 MIPS/GAS: Treat local jump relocs the same no matter if REL or RELA new aa01bd3 Linux native thread create/exit events support new 95e94c3 [Linux] Read vDSO range from /proc/PID/task/PID/maps instead [...] new 1ad3de9 [Linux] Avoid refetching core-of-thread if thread hasn't run new 774113b [Linux] Optimize PID -> struct lwp_info lookup new 72b049d Make gdb/linux-nat.c consider a waitstatus pending on the inf [...] new 026a917 Fix PR gdb/19828: gdb -p <process from a container>: internal error
The 14 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: gas/ChangeLog | 48 +++++ gas/config/tc-cr16.c | 2 +- gas/config/tc-crx.c | 2 +- gas/config/tc-d30v.c | 2 +- gas/config/tc-ft32.h | 4 +- gas/config/tc-ia64.c | 8 +- gas/config/tc-mips.c | 27 ++- gas/config/tc-mmix.c | 2 +- gas/config/tc-xtensa.c | 8 +- gas/testsuite/gas/mips/jalx-local-n32.d | 29 +++ gas/testsuite/gas/mips/jalx-local-n64.d | 37 ++++ gas/testsuite/gas/mips/jalx-local.d | 28 +++ gas/testsuite/gas/mips/jalx-local.s | 33 +++ gas/testsuite/gas/mips/mips.exp | 3 + gdb/ChangeLog | 75 +++++++ gdb/linux-nat.c | 245 +++++++++++++++++----- gdb/linux-nat.h | 4 +- gdb/linux-tdep.c | 77 +++++-- gdb/linux-thread-db.c | 14 +- gdb/testsuite/ChangeLog | 6 + gdb/testsuite/gdb.threads/clone-attach-detach.c | 66 ++++++ gdb/testsuite/gdb.threads/clone-attach-detach.exp | 98 +++++++++ ld/ChangeLog | 7 + ld/testsuite/ld-mips-elf/jalx-local-n32.d | 6 + ld/testsuite/ld-mips-elf/jalx-local-n64.d | 6 + ld/testsuite/ld-mips-elf/jalx-local.d | 26 +++ ld/testsuite/ld-mips-elf/mips-elf.exp | 3 + 27 files changed, 755 insertions(+), 111 deletions(-) create mode 100644 gas/testsuite/gas/mips/jalx-local-n32.d create mode 100644 gas/testsuite/gas/mips/jalx-local-n64.d create mode 100644 gas/testsuite/gas/mips/jalx-local.d create mode 100644 gas/testsuite/gas/mips/jalx-local.s create mode 100644 gdb/testsuite/gdb.threads/clone-attach-detach.c create mode 100644 gdb/testsuite/gdb.threads/clone-attach-detach.exp create mode 100644 ld/testsuite/ld-mips-elf/jalx-local-n32.d create mode 100644 ld/testsuite/ld-mips-elf/jalx-local-n64.d create mode 100644 ld/testsuite/ld-mips-elf/jalx-local.d