This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: GCJ application runs not too bad with shared libs, but crasheswith static libs
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Scott Gilbertson <scottg at mantatest dot com>
- Cc: java at gcc dot gnu dot org
- Date: Wed, 20 Nov 2002 21:50:55 -0500 (EST)
- Subject: Re: GCJ application runs not too bad with shared libs, but crasheswith static libs
On Wed, 20 Nov 2002, Scott Gilbertson wrote:
> (gdb) run
> Starting program: /home/scott/mts5000/java/mts5000.bin PC
> ... lots of application-generated stuff...
> Program received signal SIGABRT, Aborted.
> 0x0817b8e4 in __libc_write ()
> (gdb) where
> #0 0x0817b8e4 in __libc_write ()
What are other threads doing? I doubt that write() can trigger a
SIGABRT. More likely, this thread is waiting for I/O while some other
thread caused the abort.
Jeff