This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Patch: FYI: JNI and synchronized native
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Tom Tromey <tromey at redhat dot com>
- Cc: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: Wed, 12 Dec 2001 23:11:24 -0500 (EST)
- Subject: Re: Patch: FYI: JNI and synchronized native
On 12 Dec 2001, Tom Tromey wrote:
> +
> + if (sync != NULL)
> + _Jv_MonitorExit (sync);
I don't see a cleanup here. What happens to the monitor if an exception
is thrown from the called function?
Jeff