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 0f2265e2461 gdb: stop using host-dependent signal numbers in windows-tdep.c new 93366324f52 Remove the "next" field from windows_thread_info new e56f8ccb078 Rename win32_thread_info to windows_thread_info new 55a1e039f9d Rename windows_thread_info::id to "tid" new ae1f8880758 Share windows_thread_info between gdb and gdbserver new e9534bd257a Use new and delete for windows_thread_info new 62fe396b1cb Change two windows_thread_info members to "bool" new 2950fdf7423 Make windows_thread_info::name a unique_xmalloc_ptr new 7c7411bcabd Use lwp, not tid, for Windows thread id new 98a03287323 Share Windows thread-suspend and -resume code new 8e61ebec346 Change type of argument to windows-nat.c:thread_rec new 0a4afda3c63 Handle pending stops from the Windows kernel new 65bafd5b156 Call CloseHandle from ~windows_thread_info new 4834dad0626 Wrap shared windows-nat code in windows_nat namespace new 28688adf8f8 Share thread_rec between gdb and gdbserver new 9d8679cc712 Share get_image_name between gdb and gdbserver new 3c76026df83 Share some Windows-related globals new d41b524f45f Normalize handle_output_debug_string API new a00caa12790 Fix up complaints.h for namespace use new a816ba1897a Share handle_load_dll and handle_unload_dll declarations new 29de418deea Remove some globals from windows-nat.c new 8d30e395779 Share handle_exception new e758e19c596 Share some inferior-related Windows code new d2977bc4253 Introduce fetch_pending_stop new 2c1d95e8697 Move wait_for_debug_event to nat/windows-nat.c new 71fbdbafe07 Make last_wait_event static new d6225aff7a4 Add read_pc / write_pc support to win32-low new e54e59297a7 Introduce win32_target_ops::decr_pc_after_break new 523d4f80c32 Implement stopped_by_sw_breakpoint for Windows gdbserver new 360ad8b3505 Add pending stop support to gdbserver's Windows port
The 29 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 | 221 ++++++++++++++ gdb/complaints.h | 6 +- gdb/configure.nat | 4 +- gdb/nat/windows-nat.c | 406 ++++++++++++++++++++++++++ gdb/nat/windows-nat.h | 248 ++++++++++++++++ gdb/windows-nat.c | 693 ++++++++++++++++---------------------------- 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 ++-- 12 files changed, 1568 insertions(+), 778 deletions(-) create mode 100644 gdb/nat/windows-nat.c create mode 100644 gdb/nat/windows-nat.h