hotspot/src/share/vm/prims/jvmtiRawMonitor.hpp
// Return false if monitor is not found in the list.
static bool exit(JvmtiRawMonitor *monitor) {
{- -------------------------------------------
(1) monitor 引数で指定された JvmtiRawMonitor オブジェクトが monitors() 中に含まれていれば,
それを取り除き true をリターンする.
含まれていなければ, 単に false をリターンするだけ.
---------------------------------------- -}
if (monitors()->contains(monitor)) {
monitors()->remove(monitor);
return true;
} else {
return false;
}
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.