src/hotspot/share/prims/jni.cpp
changeset 57699 4aea554692aa
parent 57570 d7304cf430f1
child 57811 947252a54b98
--- a/src/hotspot/share/prims/jni.cpp	Fri Aug 09 10:06:44 2019 +0200
+++ b/src/hotspot/share/prims/jni.cpp	Fri Aug 09 11:04:08 2019 +0200
@@ -4135,14 +4135,13 @@
 
   thread->cache_global_variables();
 
-  // Crucial that we do not have a safepoint check for this thread, since it has
+  // This thread will not do a safepoint check, since it has
   // not been added to the Thread list yet.
-  { Threads_lock->lock_without_safepoint_check();
+  { MutexLocker ml(Threads_lock);
     // This must be inside this lock in order to get FullGCALot to work properly, i.e., to
     // avoid this thread trying to do a GC before it is added to the thread-list
     thread->set_active_handles(JNIHandleBlock::allocate_block());
     Threads::add(thread, daemon);
-    Threads_lock->unlock();
   }
   // Create thread group and name info from attach arguments
   oop group = NULL;