This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [gcj-eclipse-merge-branch] make park/unpark stuff build on win32
- From: Andrew Haley <aph at redhat dot com>
- To: Adam Megacz <adam at megacz dot com>
- Cc: java-patches at gcc dot gnu dot org
- Date: Tue, 5 Dec 2006 10:17:09 +0000
- Subject: Re: [gcj-eclipse-merge-branch] make park/unpark stuff build on win32
- References: <x3y7pm98pd.fsf@nowhere.com>
Adam Megacz writes:
>
>
> ok to commit?
>
> - a
No. This removes the creation/destruction of park_mutex and park_cond.
Shouldn't
pthread_mutex_init (&nt->park_mutex, NULL);
be replaced by something like
_Jv_MutexInit (&nt->park_mutex);
and that would work on Win32?
Andrew.