Lines Matching full:threads
6 // adds threads as necessary to handle all tasks. It keeps old threads around
8 // the threads exit. This thread pool uses non-joinable threads, therefore
9 // worker threads are not joined during process shutdown. This means that
12 // although PosixDynamicThreadPool spawns the worker threads and manages the
13 // task queue, it does not own the worker threads. The worker threads ask the
15 // worker threads all maintain scoped_refptrs to the PosixDynamicThreadPool
17 // worker threads exit. The owner of PosixDynamicThreadPool should likewise
47 // All worker threads will share the same |name_prefix|. They will exit after
54 // worker threads. Wakes up all the idle threads to let them exit.
73 // Signal()s worker threads to let them know more tasks are available.
74 // Also used for Broadcast()'ing to worker threads to let them know the pool