Searched defs:no_safepoint_check (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
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 34 milliseconds