All rights reserved. The Berkeley software License Agreement
specifies the terms and conditions for redistribution.
@(#)core.5 6.2 (Berkeley) 03/09/86
The maximum size of a core file is limited by setrlimit (2). Files which would be larger than the limit are not created.
The core file consists of the u. area, whose size (in pages) is defined by the UPAGES manifest in the < sys/param.h > file. The u. area starts with a user structure as given in < sys/user.h >. The remainder of the core file consists first of the data pages and then the stack pages of the process image. The amount of data space image in the core file is given (in pages) by the variable u_dsize in the u. area. The amount of stack image in the core file is given (in pages) by the variable u_ssize in the u. area. The size of a ``page'' is given by the constant NBPG (also from < sys/param.h >).
In general the debugger adb (1) is sufficient to deal with core images.