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 7ad578807ad Stop symbols generated by the annobin gcc plugin from break [...] new 48c9b433327 Add handle_eintr to wrap EINTR handling in syscalls new 99cf6da66af Register a placeholder for NetBSD shared functions in gdb/nat new 70b67307e9e Build nat/netbsd-nat.o for the NetBSD native target new 330662f6849 Add netbsd_nat::pid_to_exec_file new c489f8c6e61 Add gdb/nat common functions for listing threads new feedfcc7737 Add netbsd_nat::enable_proc_events in gdb/nat new 1ccb2c170ce Add a common utility function to read and write siginfo_t i [...] new f404573e4f8 Avoid double free in startup_inferior new cf4ac4be12c Switch local native code to gdb/nat shared functions new 62ba50486f1 Add minimal and functional NetBSD/amd64 gdbserver
The 10 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 | 53 ++ gdb/configure.nat | 2 +- gdb/nat/fork-inferior.c | 5 +- gdb/nat/netbsd-nat.c | 213 +++++++ gdb/nat/netbsd-nat.h | 72 +++ gdb/nbsd-nat.c | 147 +---- gdbserver/ChangeLog | 9 + gdbserver/Makefile.in | 3 + gdbserver/configure.srv | 6 + gdbserver/netbsd-amd64-low.cc | 187 ++++++ gdbserver/netbsd-low.cc | 1327 +++++++++++++++++++++++++++++++++++++++++ gdbserver/netbsd-low.h | 154 +++++ gdbsupport/ChangeLog | 4 + gdbsupport/eintr.h | 67 +++ 14 files changed, 2113 insertions(+), 136 deletions(-) create mode 100644 gdb/nat/netbsd-nat.c create mode 100644 gdb/nat/netbsd-nat.h create mode 100644 gdbserver/netbsd-amd64-low.cc create mode 100644 gdbserver/netbsd-low.cc create mode 100644 gdbserver/netbsd-low.h create mode 100644 gdbsupport/eintr.h