This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Kill a static constructor in boehm-gc
- To: Bryce McKinlay <bryce at waitaki dot otago dot ac dot nz>
- Subject: Re: Kill a static constructor in boehm-gc
- From: Tom Tromey <tromey at redhat dot com>
- Date: 22 Oct 2001 21:57:36 -0600
- Cc: java-patches at gcc dot gnu dot org, "Boehm, Hans" <hboehm at exch dot hpl dot hp dot com>
- References: <3BD3C1AF.6080609@waitaki.otago.ac.nz>
- Reply-To: tromey at redhat dot com
>>>>> "Bryce" == Bryce McKinlay <bryce@waitaki.otago.ac.nz> writes:
Bryce> And 1 more call to _Jv_MonitorEnter than _Jv_MonitorExit?
Bryce> hmm...
This could happen because the finalization thread acquires a lock, but
as that is a daemon thread, the process will exit without the lock
ever being released.
Tom