This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
RE: pdftk1.4.1, gcc3.4.6 on solaris 10 core dumps.
> -----Original Message-----
> From: Knight, Lloyd [mailto:Lloyd.Knight@adc.com]
...
> i do not understand why i have a different stack trace when i
> run dbx with and without the core file. and i do not
> understand why what i did made the segv go away.
> if anyone has an idea as to why this works, i would be
> interested in hearing....
>
The SIGSEGV is presumably still being generated. But it is handled by
the GC, as it should be. The GC explicitly installs a handler for it,
and removes it once it has determined the stack bounds. The SIGSEGV
should not cause the process to die. And all of this is normally
transparent unless a debugger is involved.
I suspect that dbx (or at least your version) doesn't like to continue
past a SIGSEGV, and basically ignores the request to continue. Telling
it to ignore the signal ("ignore SIGSEGV") instead would probably still
work. I expect this is purely a debugger misfeature.
Hans