Home | History | Annotate | Download | only in internal

Lines Matching refs:BlockingCounter

148 // A BlockingCounter lets one thread to wait for N events to occur.
151 class BlockingCounter {
153 BlockingCounter()
186 // to hit the BlockingCounter.
188 ScopedProfilingLabel label("BlockingCounter::Wait");
223 explicit Worker(BlockingCounter* counter_to_decrement_when_ready)
335 // pointer to the master's thread BlockingCounter object, to notify the
337 BlockingCounter* const counter_to_decrement_when_ready_;
354 BlockingCounter& counter_to_decrement_when_ready() {
386 // The BlockingCounter used to wait for the workers.
387 BlockingCounter counter_to_decrement_when_ready_;