This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
RE: GC incremental
- To: "'Antonio Ake '" <ake at ecn dot purdue dot edu>, "'java at gcc dot gnu dot org '" <java at gcc dot gnu dot org>
- Subject: RE: GC incremental
- From: "Boehm, Hans" <hans_boehm at hp dot com>
- Date: Sat, 29 Sep 2001 18:23:58 -0700
I don't think anyone has seriously attempted to get it to work, yet. My
guess would be that if you just call GC_enable_incremental(), it might work
for some small programs. To get it to work reliably, someone would have to
make a pass through libgcj, and make sure that all system calls which write
to the heap are suitably wrapped, so that they don't see protection faults
while excuting the system call.
Hans
-----Original Message-----
From: Antonio Ake
To: java@gcc.gnu.org
Sent: 9/29/01 3:51 PM
Subject: GC incremental
Hello. I have a question:
Is the GC incremental working with gcj?
Do I need to call GC_enable_incremental() in my java program to enable
incremental collections (beacuse I didn't find a call to this function
in libjava)?
regards