diff options
author | Per Bothner <per@bothner.com> | 2001-05-21 23:47:48 -0700 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2001-05-21 23:47:48 -0700 |
commit | c93d7fae7b9825449c023d42eb40641c0ad80be2 (patch) | |
tree | ecfc0fb5d915f5f6596ef061114d1b6b7ec5270a /libjava/jni.cc | |
parent | b4fbaca7cb5c6ff5fb5e24e554d510257cb488eb (diff) | |
download | gcc-c93d7fae7b9825449c023d42eb40641c0ad80be2.tar.gz |
Implement invocation interface; don't create new thread for main.
From-SVN: r42428
Diffstat (limited to 'libjava/jni.cc')
-rw-r--r-- | libjava/jni.cc | 29 |
1 files changed, 6 insertions, 23 deletions
diff --git a/libjava/jni.cc b/libjava/jni.cc index 3f5703a18e0..625d239c5bc 100644 --- a/libjava/jni.cc +++ b/libjava/jni.cc @@ -40,12 +40,13 @@ details. */ #include <java/util/Hashtable.h> #include <java/lang/Integer.h> #include <java/lang/ThreadGroup.h> -#include <gnu/gcj/jni/NativeThread.h> +#include <java/lang/Thread.h> #include <gcj/method.h> #include <gcj/field.h> #include <java-interp.h> +#include <java-threads.h> // FIXME: remove these defines. #define ClassClass java::lang::Class::class$ @@ -53,7 +54,6 @@ details. */ #define ThrowableClass java::lang::Throwable::class$ #define MethodClass java::lang::reflect::Method::class$ #define ThreadGroupClass java::lang::ThreadGroup::class$ -#define NativeThreadClass gnu::gcj::jni::NativeThread::class$ // This enum is used to select different template instantiations in // the invocation code. @@ -1862,7 +1862,7 @@ _Jv_JNI_AttachCurrentThread (JavaVM *, jstring name, void **penv, void *args) { try { - (void) new gnu::gcj::jni::NativeThread (group, name); + _Jv_AttachCurrentThread (name, group); } catch (jthrowable t) { @@ -1916,28 +1916,11 @@ _Jv_JNI_DestroyJavaVM (JavaVM *vm) return JNI_ERR; } -static jint +jint _Jv_JNI_DetachCurrentThread (JavaVM *) { - java::lang::Thread *t = _Jv_ThreadCurrent (); - if (t == NULL) - return JNI_EDETACHED; - - // FIXME: we only allow threads attached via AttachCurrentThread to - // be detached. I have no idea how we could implement detaching - // other threads, given the requirement that we must release all the - // monitors. That just seems evil. - JvAssert ((&NativeThreadClass)->isInstance (t)); - - // FIXME: release the monitors. We'll take this to mean all - // monitors acquired via the JNI interface. This means we have to - // keep track of them. - - gnu::gcj::jni::NativeThread *nt - = reinterpret_cast<gnu::gcj::jni::NativeThread *> (t); - nt->finish (); - - return 0; + jint code = _Jv_DetachCurrentThread (); + return code ? JNI_EDETACHED : 0; } static jint |