This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Re: Thread.interrupt() and pthread_cond_timedwait()
- To: Bryce McKinlay <bryce at albatross dot co dot nz>
- Subject: Re: Thread.interrupt() and pthread_cond_timedwait()
- From: Tom Tromey <tromey at cygnus dot com>
- Date: Tue, 7 Mar 2000 23:24:10 -0800 (PST)
- Cc: java-discuss at sourceware dot cygnus dot com
- References: <38C5F542.5BEC3815@albatross.co.nz>
Bryce> We will have to come up with a proper way of implementing
Bryce> interrupt().
Let's try to do it now. One approach would be to implement our own
condition variables and just not use pthread_cond*. This is annoying,
but at least it would work. Any better ideas?
Tom