[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug awt/24495] JAWT Lock/Unlock(JNIEnv *env) are not re-entrant (unlike
From: |
fitzsim at redhat dot com |
Subject: |
[Bug awt/24495] JAWT Lock/Unlock(JNIEnv *env) are not re-entrant (unlike SUN's implementation) |
Date: |
4 Nov 2005 22:00:50 -0000 |
------- Comment #1 from fitzsim at redhat dot com 2005-11-04 22:00 -------
Yes, I changed this in GNU Classpath CVS. In native/jawt/jawt.c:
JNIEXPORT jboolean JNICALL
JAWT_GetAWT (JNIEnv* env __attribute__((unused)), JAWT* awt)
{
...
awt->Lock = _Jv_AWTLock;
awt->Unlock = _Jv_AWTUnlock;
...
}
static void
(JNICALL _Jv_AWTLock) (JNIEnv* env __attribute__((unused)))
{
/* FIXME: what is this supposed to do? */
}
static void
(JNICALL _Jv_AWTUnlock) (JNIEnv* env __attribute__((unused)))
{
/* FIXME: what is this supposed to do? */
}
I'm closing this as fixed.
--
fitzsim at redhat dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24495
- [Bug awt/24495] JAWT Lock/Unlock(JNIEnv *env) are not re-entrant (unlike SUN's implementation),
fitzsim at redhat dot com <=