Searched refs:no_safepoint_check (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DmutexLocker.hpp211 MutexLockerEx(Monitor * mutex, bool no_safepoint_check = !Mutex::_no_safepoint_check_flag) {
214 assert(mutex->rank() > Mutex::special || no_safepoint_check,
216 if (no_safepoint_check)
239 bool no_safepoint_check = !Mutex::_no_safepoint_check_flag):
240 MutexLockerEx(monitor, no_safepoint_check),
254 bool wait(bool no_safepoint_check = !Mutex::_no_safepoint_check_flag,
258 return _monitor->wait(no_safepoint_check, timeout, as_suspend_equivalent);
324 MutexUnlockerEx(Monitor * mutex, bool no_safepoint_check = !Mutex::_no_safepoint_check_flag) {
326 _no_safepoint_check = no_safepoint_check;
H A Dmutex.hpp185 bool wait(bool no_safepoint_check = !_no_safepoint_check_flag,
269 bool wait (bool no_safepoint_check, long timeout, bool as_suspend_equivalent) { argument
H A Dmutex.cpp1085 bool Monitor::wait(bool no_safepoint_check, long timeout, bool as_suspend_equivalent) { argument
1090 // as_suspend_equivalent logically implies !no_safepoint_check
1091 guarantee (!as_suspend_equivalent || !no_safepoint_check, "invariant") ;
1092 // !no_safepoint_check logically implies java_thread
1093 guarantee (no_safepoint_check || Self->is_Java_thread(), "invariant") ;
1110 if (no_safepoint_check) {

Completed in 388 milliseconds