This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
RE: GC failure w/ THREAD_LOCAL_ALLOC ?
- From: Jeff Sturm <jsturm at one-point dot com>
- To: "Boehm, Hans" <hans_boehm at hp dot com>
- Cc: "'Michael Smith'" <msmith at spinnakernet dot com>, "'Bryce McKinlay '" <bryce at waitaki dot otago dot ac dot nz>, "''java at gcc dot gnu dot org' '" <java at gcc dot gnu dot org>
- Date: Sat, 23 Mar 2002 00:21:21 -0500 (EST)
- Subject: RE: GC failure w/ THREAD_LOCAL_ALLOC ?
On Fri, 22 Mar 2002, Jeff Sturm wrote:
> Notice the thread is created before blocking on accept(). After accept()
> returns we start() the thread and create another... isn't it true that
> this thread is momentarily invisible to the collector? Since a return
> from t.start() doesn't guarantee that t is running?
ugh... I forgot about the pthread_create() wrapper. So never mind the
above. Nevertheless, that makes the results even more puzzling. I'll
keep investigating.
Jeff