diff options
author | John Baldwin <jhb@FreeBSD.org> | 2017-06-28 11:41:41 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2017-07-07 16:10:47 -0700 |
commit | 0b9305edf1d0b15913643b132dad02d4ca4fbb43 (patch) | |
tree | d8a7d63e35ac3ce1d053aed2a7e30784b704de2f /binutils | |
parent | 2af9fc4432bbda5ebd805bf5b56d81cd80d0cbf5 (diff) | |
download | gdb-0b9305edf1d0b15913643b132dad02d4ca4fbb43.zip gdb-0b9305edf1d0b15913643b132dad02d4ca4fbb43.tar.gz gdb-0b9305edf1d0b15913643b132dad02d4ca4fbb43.tar.bz2 |
Recognize the recently-added FreeBSD core dump note for LWP info.
This core dump note contains the same information returned by the
ptrace PT_LWPINFO operation for each LWP belonging to a process.
binutils/ChangeLog:
* readelf.c (get_freebsd_elfcore_note_type): Handle
NT_FREEBSD_PTLWPINFO.
include/ChangeLog:
* elf/common.h (NT_FREEBSD_PTLWPINFO): Define.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index b5cd595..578fc0d 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2017-07-07 John Baldwin <jhb@FreeBSD.org> + + * readelf.c (get_freebsd_elfcore_note_type): Handle + NT_FREEBSD_PTLWPINFO. + 2017-07-05 H.J. Lu <hongjiu.lu@intel.com> * dwarf.c (display_debug_names): Replace index with xindex. diff --git a/binutils/readelf.c b/binutils/readelf.c index b2f75c0..c9c11a3 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -16782,6 +16782,8 @@ get_freebsd_elfcore_note_type (unsigned e_type) return _("NT_PROCSTAT_PSSTRINGS (ps_strings data)"); case NT_FREEBSD_PROCSTAT_AUXV: return _("NT_PROCSTAT_AUXV (auxv data)"); + case NT_FREEBSD_PTLWPINFO: + return _("NT_PTLWPINFO (ptrace_lwpinfo structure)"); } return get_note_type (e_type); } |