This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: swt fileviewer
- From: Tom Tromey <tromey at redhat dot com>
- To: "Erik Poupaert" <erik dot poupaert at chello dot be>
- Cc: "John Murga" <john at murga dot org>, <java at gcc dot gnu dot org>
- Date: 09 Jan 2003 12:23:17 -0700
- Subject: Re: swt fileviewer
- References: <POEIJGMGPFPGFHAGKFHAKEIKCDAA.erik.poupaert@chello.be>
- Reply-to: tromey at redhat dot com
>>>>> "Erik" == Erik Poupaert <erik.poupaert@chello.be> writes:
Erik> While posix-threads.cc/_JvCondWait() will return (_JV_NOT_OWNER,
Erik> _JV_INTERRUPTED, 0), which are exactly the return codes that
Erik> java::lang::Object::wait() checks on,
Erik> win32-threads.cc/_JvCondWait(), will return (GetLastError(),
Erik> ETIMEOUT, 0).
That definitely seems like a bug to me.
Please submit a PR for this problem.
Erik> Why are the return codes to java::lang::Object::wait() different
Erik> for posix and win32? Shouldn't they return the same values to
Erik> java::lang::Object::wait()?
Yes, they should.
Tom