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 /include/elf | |
parent | 2af9fc4432bbda5ebd805bf5b56d81cd80d0cbf5 (diff) | |
download | binutils-gdb-0b9305edf1d0b15913643b132dad02d4ca4fbb43.tar.gz |
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 'include/elf')
-rw-r--r-- | include/elf/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/elf/common.h b/include/elf/common.h index 2976c06067c..3a144f03bc4 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -641,6 +641,7 @@ #define NT_FREEBSD_PROCSTAT_OSREL 14 /* Procstat osreldate data. */ #define NT_FREEBSD_PROCSTAT_PSSTRINGS 15 /* Procstat ps_strings data. */ #define NT_FREEBSD_PROCSTAT_AUXV 16 /* Procstat auxv data. */ +#define NT_FREEBSD_PTLWPINFO 17 /* Thread ptrace miscellaneous info. */ /* Note segments for core files on NetBSD systems. Note name must start with "NetBSD-CORE". */ |