This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Re: Patch: posix-threads code update
Tom Tromey wrote:
> With those changes, this patch is fine.
Checked in, with one small change. I added the following code to the end
of really_start in posix-threads.cc.
#ifndef LINUX_THREADS
// Clean up. These calls do nothing on Linux.
pthread_mutex_destroy (&info->data->wait_mutex);
pthread_cond_destroy (&info->data->wait_cond);
#endif /* ! LINUX_THREADS */
regards
[ bryce ]