Lines Matching defs:wait
47 * * A condition variable so threads can wait for processing completion.
57 * The exit wait condition is needed to ensure processing has finished before a worker thread can
60 * Calling @c wait() will ensure that all other worker have finished before the thread can proceed.
92 * manager->wait()
161 * initialization. Other threads will block and wait for it to complete.
180 * initialization. Other threads will block and wait for it to complete.
226 * Mark @c count tasks as complete. This will notify all threads blocked on @c wait() if this
234 // update here and the wait() for other threads
284 void wait()
287 m_complete.wait(lck, [this]{ return m_done_count == m_task_count; });
294 * work pool termination. Caller must have called @c wait() prior to calling this function to