From d6fee2389787a709737b22c628a1d15db01d76f8 Mon Sep 17 00:00:00 2001 From: Fred Fish Date: Tue, 12 Nov 1991 03:06:05 +0000 Subject: Add support for ELF note sections, which are used in ELF core files to hold copies of various /proc structures at the time of the core dump. --- include/elf-common.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/elf-common.h') diff --git a/include/elf-common.h b/include/elf-common.h index 4544deb..a2cb398 100755 --- a/include/elf-common.h +++ b/include/elf-common.h @@ -126,3 +126,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define SHF_ALLOC (1 << 1) /* Occupies memory during execution */ #define SHF_EXECINSTR (1 << 2) /* Executable machine instructions */ #define SHF_MASKPROC 0xF0000000 /* Processor-specific semantics */ + +/* Values of note segment descriptor types for core files. */ + +#define NT_PRSTATUS 1 /* Contains copy of prstatus struct */ +#define NT_FPREGSET 2 /* Contains copy of fpregset struct */ +#define NT_PRPSINFO 3 /* Contains copy of prpsinfo struct */ -- cgit v1.1