< prev index next >

src/hotspot/share/runtime/vmOperations.cpp

Print this page
rev 60025 : 8246476: remove AsyncDeflateIdleMonitors option and the safepoint based deflation mechanism

*** 429,442 **** 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. ObjectSynchronizer::request_deflate_idle_monitors(); } return true; } --- 429,442 ---- ml.wait(10); } } bool VM_Exit::doit_prologue() { ! 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 >