This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tk1/gnu-master-arm-spec2k6-O2_LTO in repository toolchain/ci/binutils-gdb.
from 3071b197da x86: Correct -mlfence-before-indirect-branch= documentation adds ae4b1d73f9 ld: Fix pr22269-1 on 32-bit Solaris/SPARC adds 206c98a650 Add SVR4 psABI specific parser for AUXV entries adds a25198bba2 Partially revert my UB fix in record_line adds f4460aec69 gdb: move Tom de Vries to Global Maintainers adds 6993bae074 Automatic date update in version.in adds bdfc1e8a0b [gdb/cli] Don't let python colorize strip leading newlines adds 71ea2b6be8 [gdb/testsuite] Fix -readnow FAIL in gdb.base/style.exp adds a5d214978f ld: xfail several shared (non PIC) tests on Solaris adds 13302e956f Fix debugging of WOW64 processes adds 3e65b3e9af Skip separate debug files when handling copy relocations adds 0c4311ab90 Avoid infinite recursion in get_msymbol_address adds de7ac122a7 Automatic date update in version.in adds cf83625da2 gdb: fix undefined behavior reported in copy_bitwise adds 0b07a19901 Automatic date update in version.in adds 54b8cbd0e4 Implement "info proc mappings" for NetBSD adds 51c133d547 Implement "info proc exe" for NetBSD adds b4848d2a7b Implement "info proc cwd" for NetBSD adds 49d1d1f53d Implement "info proc cmdline" for NetBSD adds b23b09ad31 Automatic date update in version.in adds 1085dfd4e1 Implement IP_MINIMAL and IP_ALL on NetBSD adds dd1cab0694 [gdb/testsuite] Fix gdb.ada/catch_ex_std.exp gnatlink FAIL adds b7f999aee3 Update my email address on MAINTAINERS adds 58cf28e860 Move start_event_loop out of event-loop.c adds 8ae8e19796 Move event-loop configury to common.m4 adds 06cc9596e8 Move gdb_select.h to gdbsupport/ adds 98029d02d7 Include <chrono> in event-loop.c adds 29f2bf4f22 Use warning in event-loop adds c1cd3163d9 Introduce and use flush_streams adds 93b54c8ed3 Introduce async-event.[ch] adds 400b5eca00 Move event-loop.[ch] to gdbsupport/ adds e487f9949a Implement event-loop glue for gdbserver adds 55d7aec85e Switch gdbserver to gdbsupport event loop adds 7990abcc9b Move gdb_notifier comment adds 73944e9f63 Remove gdb_fildes_t adds b1f1b4decb Automatic date update in version.in adds 21b0982c77 gdb/testsuite: Move helper function into lib/dwarf.exp
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- gdb/ChangeLog | 187 +++++++ gdb/MAINTAINERS | 6 +- gdb/Makefile.in | 4 +- gdb/async-event.c | 325 ++++++++++++ gdb/async-event.h | 71 +++ gdb/auxv.c | 61 ++- gdb/auxv.h | 17 +- gdb/buildsym.c | 37 +- gdb/configure | 10 +- gdb/configure.ac | 6 +- gdb/event-top.c | 5 +- gdb/guile/scm-ports.c | 2 +- gdb/inf-loop.c | 2 +- gdb/inflow.c | 2 +- gdb/infrun.c | 5 +- gdb/interps.c | 2 +- gdb/linux-nat.c | 2 +- gdb/main.c | 58 ++- gdb/mi/mi-interp.c | 2 +- gdb/mi/mi-main.c | 2 +- gdb/mingw-hdep.c | 4 +- gdb/nat/windows-nat.c | 7 +- gdb/nat/windows-nat.h | 8 + gdb/nbsd-nat.c | 237 +++++++++ gdb/nbsd-nat.h | 3 + gdb/nbsd-tdep.c | 91 ++++ gdb/nbsd-tdep.h | 18 + gdb/obsd-tdep.c | 30 +- gdb/posix-hdep.c | 4 +- gdb/python/lib/gdb/__init__.py | 2 +- gdb/python/python.c | 2 +- gdb/record-btrace.c | 3 +- gdb/record-full.c | 3 +- gdb/remote-fileio.c | 2 +- gdb/remote-notif.c | 3 +- gdb/remote.c | 3 +- gdb/run-on-main-thread.c | 2 +- gdb/ser-base.c | 4 +- gdb/ser-tcp.c | 2 +- gdb/ser-unix.c | 2 +- gdb/symfile.c | 2 +- gdb/symtab.c | 6 +- gdb/testsuite/ChangeLog | 27 + gdb/testsuite/gdb.base/style.c | 4 + gdb/testsuite/gdb.base/style.exp | 19 +- .../gdb.dwarf2/dw2-inline-many-frames.exp | 14 - gdb/testsuite/gdb.dwarf2/dw2-inline-small-func.exp | 16 +- gdb/testsuite/gdb.dwarf2/dw2-is-stmt-2.exp | 14 - gdb/testsuite/gdb.dwarf2/dw2-is-stmt.exp | 14 - gdb/testsuite/lib/ada.exp | 3 + gdb/testsuite/lib/dwarf.exp | 16 + gdb/top.c | 4 +- gdb/top.h | 2 +- gdb/tui/tui-hooks.c | 2 +- gdb/tui/tui-interp.c | 2 +- gdb/tui/tui-io.c | 2 +- gdb/tui/tui-win.c | 3 +- gdb/ui-file.c | 2 +- gdb/unittests/main-thread-selftests.c | 2 +- gdb/utils.c | 11 +- gdb/windows-nat.c | 13 +- gdbserver/ChangeLog | 37 ++ gdbserver/Makefile.in | 1 - gdbserver/config.in | 12 + gdbserver/configure | 4 +- gdbserver/event-loop.cc | 567 --------------------- gdbserver/event-loop.h | 36 -- gdbserver/remote-utils.cc | 34 +- gdbserver/server.cc | 75 ++- gdbserver/server.h | 13 +- gdbserver/utils.cc | 12 - gdbserver/utils.h | 1 - gdbsupport/ChangeLog | 23 + gdbsupport/Makefile.am | 1 + gdbsupport/Makefile.in | 22 +- gdbsupport/common.m4 | 5 +- gdbsupport/config.in | 12 + gdbsupport/configure | 4 +- gdbsupport/errors.h | 4 + gdb/event-loop.c => gdbsupport/event-loop.cc | 402 +-------------- {gdb => gdbsupport}/event-loop.h | 48 +- {gdb => gdbsupport}/gdb_select.h | 0 ld/ChangeLog | 9 + ld/testsuite/ld-elf/shared.exp | 2 +- ld/testsuite/ld-shared/shared.exp | 10 +- 86 files changed, 1465 insertions(+), 1285 deletions(-) create mode 100644 gdb/async-event.c create mode 100644 gdb/async-event.h delete mode 100644 gdbserver/event-loop.cc delete mode 100644 gdbserver/event-loop.h rename gdb/event-loop.c => gdbsupport/event-loop.cc (68%) rename {gdb => gdbsupport}/event-loop.h (69%) rename {gdb => gdbsupport}/gdb_select.h (100%)