Lines Matching refs:Worker
76 void Worker() {
104 MyThread t1(Worker), t2(Worker);
474 void Worker() { Func19(); }
477 MyThreadArray t(Worker, Worker, Worker);
488 // Worker(N) will do 2^N increments of GLOB, each increment in a separate thread
489 void Worker(int depth) {
494 pool.Add(NewCallback(Worker, depth-1));
495 pool.Add(NewCallback(Worker, depth-1));
502 Worker(4);