This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH v2 0/5] Support for 'info proc' on FreeBSD cores and native


Changes since the first version of this patch series include:

- The first patch for binutils recognizing new core notes has been
  pushed.
- The 'stat' and 'status' subcommands have been merged on FreeBSD.
- Additional error checking added to the argument parsing for the
  native FreeBSD target's info proc method.
- One new patch to fix a bug in fbsd_pid_to_exec_file found during
  testing.
- One new patch to remove an extraneous unique_ptr deleter.
- Various cleanups suggested by Simon Marchi.
- Further refinements to the documentation to be less /proc centric
  and to fix some dangling references to the renamed node's old name.

John Baldwin (5):
  Support 'info proc' for FreeBSD process core dumps.
  Don't return stale data from fbsd_pid_to_exec_file for kernel
    processes.
  Use gdb::unique_xmalloc_ptr<> instead of a deleter that invokes
    free().
  Support 'info proc' for native FreeBSD processes.
  Document support for 'info proc' on FreeBSD.

 gdb/ChangeLog       |  42 ++++
 gdb/config.in       |   3 +
 gdb/configure       |  60 +++++
 gdb/configure.ac    |   5 +
 gdb/doc/ChangeLog   |   9 +
 gdb/doc/gdb.texinfo |  76 ++++---
 gdb/fbsd-nat.c      | 384 ++++++++++++++++++++++++++++---
 gdb/fbsd-tdep.c     | 643 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 gdb/fbsd-tdep.h     |   7 +
 9 files changed, 1161 insertions(+), 68 deletions(-)

-- 
2.15.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]