< prev index next >

src/hotspot/share/runtime/jniHandles.cpp

Print this page

        

*** 45,54 **** --- 45,55 ---- if (obj == NULL) { return NULL; // ignore null handles } else { Thread* thread = Thread::current(); assert(Universe::heap()->is_in_reserved(obj), "sanity check"); + assert(JavaThread::current()->thread_state() != _thread_in_native, "must not be in native"); return thread->active_handles()->allocate_handle(obj); } }
*** 57,66 **** --- 58,69 ---- jobject JNIHandles::make_local(Thread* thread, oop obj) { if (obj == NULL) { return NULL; // ignore null handles } else { assert(Universe::heap()->is_in_reserved(obj), "sanity check"); + assert(thread->is_Java_thread(), "not a Java thread"); + assert(((JavaThread *)thread)->thread_state() != _thread_in_native, "must not be in native"); return thread->active_handles()->allocate_handle(obj); } }
*** 68,84 **** --- 71,89 ---- if (obj == NULL) { return NULL; // ignore null handles } else { JavaThread* thread = JavaThread::thread_from_jni_environment(env); assert(Universe::heap()->is_in_reserved(obj), "sanity check"); + assert(thread->thread_state() != _thread_in_native, "must not be in native"); return thread->active_handles()->allocate_handle(obj); } } jobject JNIHandles::make_global(Handle obj) { assert(!Universe::heap()->is_gc_active(), "can't extend the root set during GC"); + assert(JavaThread::current()->thread_state() != _thread_in_native, "must not be in native"); jobject res = NULL; if (!obj.is_null()) { // ignore null handles MutexLocker ml(JNIGlobalHandle_lock); assert(Universe::heap()->is_in_reserved(obj()), "sanity check");
*** 91,100 **** --- 96,106 ---- } jobject JNIHandles::make_weak_global(Handle obj) { assert(!Universe::heap()->is_gc_active(), "can't extend the root set during GC"); + assert(JavaThread::current()->thread_state() != _thread_in_native, "must not be in native"); jobject res = NULL; if (!obj.is_null()) { // ignore null handles { MutexLocker ml(JNIGlobalHandle_lock);
< prev index next >