Lines Matching refs:Threads
34 #include "Threads.h"
72 Threads threads(&pointers, max_threads);
74 printf("Maximum threads available: %zu\n", threads.max_threads());
103 Thread* thread = threads.FindThread(tid);
105 thread = threads.CreateThread(tid);
119 // Make sure that any other threads doing allocations are complete
122 threads.WaitForAllToQuiesce();
130 threads.Finish(thread);
140 // Wait for all threads to stop processing actions.
141 threads.WaitForAllToQuiesce();
148 threads.FinishAll();
153 threads.total_time_nsecs(), threads.total_time_nsecs()/1000000000.0);