hotspot/src/share/vm/runtime/thread.cpp
changeset 33729 b1e0ae955f02
parent 33602 16053580a684
child 33792 2bae5bf9e431
--- a/hotspot/src/share/vm/runtime/thread.cpp	Thu Oct 29 17:32:08 2015 +0100
+++ b/hotspot/src/share/vm/runtime/thread.cpp	Thu Oct 29 18:59:22 2015 -0400
@@ -1868,13 +1868,10 @@
   // Optionally release any monitors for regular JavaThread exits. This
   // is provided as a work around for any bugs in monitor enter-exit
   // matching. This can be expensive so it is not enabled by default.
-  // ObjectMonitor::Knob_ExitRelease is a superset of the
-  // JNIDetachReleasesMonitors option.
   //
   // ensure_join() ignores IllegalThreadStateExceptions, and so does
   // ObjectSynchronizer::release_monitors_owned_by_thread().
-  if ((exit_type == jni_detach && JNIDetachReleasesMonitors) ||
-      ObjectMonitor::Knob_ExitRelease) {
+  if (exit_type == jni_detach || ObjectMonitor::Knob_ExitRelease) {
     // Sanity check even though JNI DetachCurrentThread() would have
     // returned JNI_ERR if there was a Java frame. JavaThread exit
     // should be done executing Java code by the time we get here.