by Hermelito Go » Tue Oct 04, 2005 8:38 pm
From solaris man page.
File Formats core(4)
NAME
core - core image file
DESCRIPTION
The operating system writes out a core image of a processwhen it is terminated due to the receipt of some signals. The core image is called core and is written in the process's working directory (provided it can be; normal access controls apply). A process with an effective user ID different from the real user ID will not produce a core image. This is also true for a process with an effective group ID different from the real group ID. Set-user-ID and set-group-ID programs do not produce core images either when they terminate, since this would cause a security loophole.
The core file contains all the process information pertinent to debugging: contents of hardware registers, process status, and process data. The format of a core file is object file specific.
For ELF executable programs (see a.out(4)), the core file generated is also an ELF file, containing ELF program and file headers. The e_type field in the file header has type ET_CORE. The program header contains an entry for every segment that was part of the process address space, including shared library segments. The contents of the writable segments are also part of the core image.
The program header of an ELF core file also contains entries for two NOTE segments, each containing several note entries as described below. The note entry header and core file note
type(n_type) definitions are contained in . The
first NOTE segment exists for binary compatibility with old programs that deal with core files. It contains structures defined in . New programs should recognize and skip this NOTE segment, advancing instead to the new NOTE segment. The old NOTE segment will be deleted from core files in a future release.