Home | History | Annotate | Download | only in synchronization

Lines Matching refs:thread_count

64   explicit WorkQueue(int thread_count);
116 // Compares the |shutdown_task_count_| to the |thread_count| and returns true
119 bool ThreadSafeCheckShutdown(int thread_count);
474 WorkQueue::WorkQueue(int thread_count)
479 thread_count_(thread_count),
481 thread_handles_(new PlatformThreadHandle[thread_count]),
482 assignment_history_(thread_count),
483 completion_history_(thread_count),
559 bool WorkQueue::ThreadSafeCheckShutdown(int thread_count) {
565 all_shutdown = (shutdown_task_count_ == thread_count);