This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: generating core dumps
- From: bjorn rohde jensen <bjensen at fastmail dot fm>
- To: Inderjeet Saggu <isaggu at integ dot com>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Mon, 06 Jan 2003 14:22:59 +0100
- Subject: Re: generating core dumps
- References: <JHEFJDGEEHODCECGLMGCCEMECCAA.isaggu@integ.com>
- Reply-to: bjensen at fastmail dot fm
Hi Saggu,
The generation of core files is a platform thing;)
On UNIX systems there is generally a core file size
system limit, which you might want to have a look at
using 'limit', 'ulimit' or something. The limit might
be smaller than the process image. Secondly, not all
signals cause core dumps by default. You might be able
to configure that on certain platforms, or alternatively
install a signal handler, which calls abort, for the
signal in question.
Yours sincerely,
Bjorn