This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: arm-wince-pe-gcj: Finalizers not getting called
- From: Tom Tromey <tromey at redhat dot com>
- To: "Craig A. Vanderborgh" <craigv at voxware dot com>
- Cc: java at gcc dot gnu dot org
- Date: 29 Jul 2003 11:31:09 -0600
- Subject: Re: arm-wince-pe-gcj: Finalizers not getting called
- References: <1059497905.25272.847.camel@zetar>
- Reply-to: tromey at redhat dot com
>>>>> "Craig" == Craig A Vanderborgh <craigv@voxware.com> writes:
Craig> 1. The configuration is done so that the finalizer, finalize_sync_info()
Craig> is there as it should be.
Craig> 2. finalize_sync_info() contains the needed DCS
Craig> 3. The finalizer is apparently "registered" via the RegisterFinalizer
Craig> call.
Note also that you're using non-hash synchronization. This is slower
and needs more memory (an extra pointer per object). You might want
to consider porting the hash sync code to ARM.
Tom