< prev index next >

src/hotspot/share/runtime/vmOperations.cpp

Print this page
rev 60098 : 8246476: remove AsyncDeflateIdleMonitors option and the safepoint based deflation mechanism
Reviewed-by: dholmes, pchilanomate, coleenp

@@ -429,14 +429,14 @@
     ml.wait(10);
   }
 }
 
 bool VM_Exit::doit_prologue() {
-  if (AsyncDeflateIdleMonitors && log_is_enabled(Info, monitorinflation)) {
-    // AsyncDeflateIdleMonitors does a special deflation in order
-    // to reduce the in-use monitor population that is reported by
-    // ObjectSynchronizer::log_in_use_monitor_details() at VM exit.
+  if (log_is_enabled(Info, monitorinflation)) {
+    // Do a deflation in order to reduce the in-use monitor population
+    // that is reported by ObjectSynchronizer::log_in_use_monitor_details()
+    // at VM exit.
     ObjectSynchronizer::request_deflate_idle_monitors();
   }
   return true;
 }
 
< prev index next >