Re: Java crashes - only message is "Aborted"???



On Wed, 27 Jun 2007 06:37:22 -0700, dduck wrote:
We have a strange problem. Our program occationally crashes after
running for several hours. Nothing is logged, and the only message
written to the console is "Aborted" - no stack trace, no exception,
no nothing.
[...]
No core dump or fatal error log is produced.
[...]
Any suggestions on how to proceed?

You've received SIGABRT, either because someone has sent that signal
(with kill), or because the code itself invokes abort(), perhaps via
assert().

Try doing "ulimit -c unlimited" in the shell (or start script) before
starting the application, or confirm with "ulimit -c" that the setting
is "unlimited". That should get you a corefile.

/gordon

--
.