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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dsafepoint.hpp95 static volatile int _waiting_to_block; // number of threads we are waiting for to block member in class:SafepointSynchronize
160 static void signal_thread_at_safepoint() { _waiting_to_block--; }
H A Dsafepoint.cpp98 volatile int SafepointSynchronize::_waiting_to_block = 0; member in class:SafepointSynchronize
147 _waiting_to_block = nof_threads;
324 // ((still_running + _waiting_to_block - TryingToBlock)) < ncpus)
348 while (_waiting_to_block > 0) {
349 if (TraceSafepoint) tty->print_cr("Waiting for %d thread(s) to block", _waiting_to_block);
362 assert(_waiting_to_block == 0, "sanity check");
652 assert(_waiting_to_block > 0, "sanity check");
653 _waiting_to_block--;
662 // Consider (_waiting_to_block < 2) to pipeline the wakeup of the VM thread
663 if (_waiting_to_block
[all...]

Completed in 33 milliseconds