06-03-06 06:14 PM
"Frank Meerkötter" <frank@betaversion.net> writes:
> Can a program do something that prevents coredump generation?
On any UNIX system, a program can establish signal handler for all
core-dumping signals, and call _exit() when that handler is invoked.
Since you are on linux, run the program under strace and see if in
fact it does that for SIGILL. If so, see if it also does that for
other core-dumping signals (usually SIGQUIT is the signal you'll
want to send -- its *only* reason is to stop program with a core).
Cheers,
--
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.
[ Post a follow-up to this message ]
|