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 bcf8470303e gas: handle csect in bss section for XCOFF new 96cbfd9f048 Fix an assertion failure in the AArch64 assembler triggered [...] new 965febe599a Move scoped_ignore_sigttou to gdbsupport/ new 6a7f1c20e82 Introduce scoped_restore_signal new 606a4313664 scoped_ignore_signal: Use sigprocmask+sigtimedwait instead [...] new 2af6d46fd33 Add a unit test for scoped_ignore_sigpipe
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: gas/ChangeLog | 7 ++ gas/config/tc-aarch64.c | 15 ++- gas/testsuite/gas/aarch64/pr27904.d | 2 + gas/testsuite/gas/aarch64/pr27904.l | 2 + gas/testsuite/gas/aarch64/pr27904.s | 1 + gdb/ChangeLog | 26 +++++ gdb/Makefile.in | 2 +- gdb/compile/compile.c | 29 +----- gdb/inf-ptrace.c | 1 - gdb/inflow.c | 2 +- gdb/inflow.h | 56 ----------- gdb/procfs.c | 1 - gdb/ser-unix.c | 2 +- gdb/unittests/scoped_ignore_signal-selftests.c | 126 +++++++++++++++++++++++++ gdbsupport/ChangeLog | 13 +++ gdbsupport/scoped_ignore_signal.h | 97 +++++++++++++++++++ gdbsupport/scoped_ignore_sigttou.h | 87 +++++++++++++++++ 17 files changed, 377 insertions(+), 92 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/pr27904.d create mode 100644 gas/testsuite/gas/aarch64/pr27904.l create mode 100644 gas/testsuite/gas/aarch64/pr27904.s delete mode 100644 gdb/inflow.h create mode 100644 gdb/unittests/scoped_ignore_signal-selftests.c create mode 100644 gdbsupport/scoped_ignore_signal.h create mode 100644 gdbsupport/scoped_ignore_sigttou.h