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 5031d0ae0b Expect optional "arch=" when executing "-stack-list-frames" [...] new 9f235e09e4 Use KF_PATH to verify the size of a struct kinfo_file. new 2afffa7f62 Generate aclocal-m4-deps.mk more deterministically and portably. new 725e299974 Import gnulib's inet_ntop module. new e98ee8c458 Add a new 'info proc files' subcommand of 'info proc'. new 57c2a98a4c Add support for 'info proc files' on FreeBSD core dumps. new 7e69672e4d Support 'info proc files' on live FreeBSD processes. new 8b11311136 Document the 'info proc files' command. new 73f1bd769a Make the "info proc" documentation more consistent.
The 8 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 | 91 ++ gdb/NEWS | 3 + gdb/defs.h | 3 + gdb/doc/ChangeLog | 10 + gdb/doc/gdb.texinfo | 34 +- gdb/fbsd-nat.c | 32 +- gdb/fbsd-tdep.c | 416 +++++++- gdb/fbsd-tdep.h | 20 + gdb/gnulib/aclocal-m4-deps.mk | 231 ++--- gdb/gnulib/aclocal.m4 | 7 + gdb/gnulib/config.in | 98 ++ gdb/gnulib/configure | 1883 +++++++++++++++++++++++++++++----- gdb/gnulib/import/Makefile.am | 179 +++- gdb/gnulib/import/Makefile.in | 266 ++++- gdb/gnulib/import/arpa_inet.in.h | 140 +++ gdb/gnulib/import/inet_ntop.c | 260 +++++ gdb/gnulib/import/m4/arpa_inet_h.m4 | 57 + gdb/gnulib/import/m4/gnulib-cache.m4 | 3 +- gdb/gnulib/import/m4/gnulib-comp.m4 | 37 + gdb/gnulib/import/m4/inet_ntop.m4 | 68 ++ gdb/gnulib/import/m4/netinet_in_h.m4 | 31 + gdb/gnulib/import/m4/socklen.m4 | 77 ++ gdb/gnulib/import/m4/sockpfaf.m4 | 87 ++ gdb/gnulib/import/m4/stdalign.m4 | 57 + gdb/gnulib/import/m4/sys_uio_h.m4 | 31 + gdb/gnulib/import/netinet_in.in.h | 47 + gdb/gnulib/import/stdalign.in.h | 121 +++ gdb/gnulib/import/sys_socket.c | 4 + gdb/gnulib/import/sys_socket.in.h | 692 +++++++++++++ gdb/gnulib/import/sys_uio.in.h | 63 ++ gdb/gnulib/update-gnulib.sh | 4 +- gdb/infcmd.c | 24 +- 32 files changed, 4631 insertions(+), 445 deletions(-) create mode 100644 gdb/gnulib/import/arpa_inet.in.h create mode 100644 gdb/gnulib/import/inet_ntop.c create mode 100644 gdb/gnulib/import/m4/arpa_inet_h.m4 create mode 100644 gdb/gnulib/import/m4/inet_ntop.m4 create mode 100644 gdb/gnulib/import/m4/netinet_in_h.m4 create mode 100644 gdb/gnulib/import/m4/socklen.m4 create mode 100644 gdb/gnulib/import/m4/sockpfaf.m4 create mode 100644 gdb/gnulib/import/m4/stdalign.m4 create mode 100644 gdb/gnulib/import/m4/sys_uio_h.m4 create mode 100644 gdb/gnulib/import/netinet_in.in.h create mode 100644 gdb/gnulib/import/stdalign.in.h create mode 100644 gdb/gnulib/import/sys_socket.c create mode 100644 gdb/gnulib/import/sys_socket.in.h create mode 100644 gdb/gnulib/import/sys_uio.in.h