This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-lts-allnoconfig in repository toolchain/ci/binutils-gdb.
from 063f8e80b0 Define NetBSD specific skip_solib_resolver adds cc9411f8dc Automatic date update in version.in adds e21d048f8a [gdb/testsuite] Add gcc/94469 xfails to gdb.ada/call_pn.exp adds 14ca8ecfcb [gdb/testsuite] Fix imported-unit.exp FAIL without psymtabs adds 6a3ab9239a [PATCH 2/4]: moxie: use generic pcrel support adds d9f1988553 [PATCH 3/4]: m32c: remove duplicate define and prototype adds 9ad4cfa8c3 [PATCH 4/4]: Add generic prototype for md_pcrel_from_section adds 4c09b8c4e7 [PATCH 1/4]: microblaze: remove duplicate prototypes adds 3810f182ee Remove objfile parameter from read_gdb_index_from_buffer adds 0f2265e246 gdb: stop using host-dependent signal numbers in windows-tdep.c adds 93366324f5 Remove the "next" field from windows_thread_info adds e56f8ccb07 Rename win32_thread_info to windows_thread_info adds 55a1e039f9 Rename windows_thread_info::id to "tid" adds ae1f888075 Share windows_thread_info between gdb and gdbserver adds e9534bd257 Use new and delete for windows_thread_info adds 62fe396b1c Change two windows_thread_info members to "bool" adds 2950fdf742 Make windows_thread_info::name a unique_xmalloc_ptr adds 7c7411bcab Use lwp, not tid, for Windows thread id adds 98a0328732 Share Windows thread-suspend and -resume code adds 8e61ebec34 Change type of argument to windows-nat.c:thread_rec adds 0a4afda3c6 Handle pending stops from the Windows kernel adds 65bafd5b15 Call CloseHandle from ~windows_thread_info adds 4834dad062 Wrap shared windows-nat code in windows_nat namespace adds 28688adf8f Share thread_rec between gdb and gdbserver adds 9d8679cc71 Share get_image_name between gdb and gdbserver adds 3c76026df8 Share some Windows-related globals adds d41b524f45 Normalize handle_output_debug_string API adds a00caa1279 Fix up complaints.h for namespace use adds a816ba1897 Share handle_load_dll and handle_unload_dll declarations adds 29de418dee Remove some globals from windows-nat.c adds 8d30e39577 Share handle_exception adds e758e19c59 Share some inferior-related Windows code adds d2977bc425 Introduce fetch_pending_stop adds 2c1d95e869 Move wait_for_debug_event to nat/windows-nat.c adds 71fbdbafe0 Make last_wait_event static adds d6225aff7a Add read_pc / write_pc support to win32-low adds e54e59297a Introduce win32_target_ops::decr_pc_after_break adds 523d4f80c3 Implement stopped_by_sw_breakpoint for Windows gdbserver adds 360ad8b350 Add pending stop support to gdbserver's Windows port adds 6b0f946d41 Automatic date update in version.in adds 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 new f4460aec69 gdb: move Tom de Vries to Global Maintainers
The 1 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: bfd/version.h | 2 +- gas/ChangeLog | 50 +++ gas/config/tc-aarch64.h | 1 - gas/config/tc-arc.h | 1 - gas/config/tc-arm.h | 1 - gas/config/tc-avr.h | 1 - gas/config/tc-bfin.h | 1 - gas/config/tc-bpf.h | 1 - gas/config/tc-csky.h | 1 - gas/config/tc-d10v.h | 4 +- gas/config/tc-d30v.h | 2 - gas/config/tc-epiphany.h | 1 - gas/config/tc-fr30.h | 1 - gas/config/tc-frv.h | 1 - gas/config/tc-iq2000.h | 1 - gas/config/tc-lm32.h | 1 - gas/config/tc-m32c.h | 5 - gas/config/tc-m32r.h | 1 - gas/config/tc-mcore.h | 1 - gas/config/tc-mep.h | 1 - gas/config/tc-metag.h | 1 - gas/config/tc-microblaze.h | 15 - gas/config/tc-mmix.h | 1 - gas/config/tc-moxie.h | 8 - gas/config/tc-msp430.h | 2 - gas/config/tc-mt.h | 1 - gas/config/tc-or1k.h | 1 - gas/config/tc-ppc.h | 1 - gas/config/tc-rl78.h | 1 - gas/config/tc-rx.h | 1 - gas/config/tc-s390.h | 1 - gas/config/tc-sh.h | 1 - gas/config/tc-xc16x.h | 1 - gas/config/tc-xstormy16.h | 1 - gas/doc/c-i386.texi | 6 +- gas/tc.h | 3 + gdb/ChangeLog | 278 ++++++++++++ gdb/MAINTAINERS | 2 +- gdb/amd64-windows-tdep.c | 10 +- gdb/auxv.c | 61 ++- gdb/auxv.h | 17 +- gdb/buildsym.c | 37 +- gdb/complaints.h | 6 +- gdb/configure.nat | 4 +- gdb/dwarf2/read.c | 8 +- gdb/i386-windows-tdep.c | 27 +- gdb/nat/windows-nat.c | 406 +++++++++++++++++ gdb/nat/windows-nat.h | 248 +++++++++++ gdb/nbsd-tdep.c | 2 + gdb/obsd-tdep.c | 30 +- gdb/testsuite/ChangeLog | 11 + gdb/testsuite/gdb.ada/call_pn.exp | 50 ++- gdb/testsuite/gdb.dwarf2/imported-unit.exp | 26 +- gdb/testsuite/lib/gdb.exp | 18 + gdb/windows-nat.c | 693 +++++++++++------------------ gdb/windows-tdep.c | 214 ++++++--- gdb/windows-tdep.h | 9 + gdbserver/ChangeLog | 146 ++++++ gdbserver/configure.srv | 7 +- gdbserver/win32-arm-low.cc | 32 +- gdbserver/win32-i386-low.cc | 73 ++- gdbserver/win32-low.cc | 447 +++++++------------ gdbserver/win32-low.h | 63 ++- ld/ChangeLog | 4 + ld/testsuite/ld-elf/shared.exp | 2 +- 65 files changed, 2050 insertions(+), 1004 deletions(-) create mode 100644 gdb/nat/windows-nat.c create mode 100644 gdb/nat/windows-nat.h