Lines Matching refs:worker
8 [#worker]
9 [section:worker Running with worker threads]
13 If a worker thread is used but no fiber is created or parts of the framework
16 auto worker = std::thread(
20 worker.join();
24 If the worker thread simply returns, destroys the scheduler and terminates.
26 auto worker = std::thread(
31 worker.join();
34 In order to keep the worker thread running, the fiber associated with the thread
38 fibers of the worker thread have been terminated.
42 auto worker = std::thread(
51 worker.join();
56 Tasks can be transferred via channels. The worker thread runs a pool of fibers
62 auto worker = std::thread(
86 worker.join();
90 algorithm a worker thread steals fibers from the ready-queue of other worker
93 [note Wait till all worker threads have registered the work-stealing scheduling
99 auto worker = std::thread(
103 // suspend main-fiber from the worker thread
113 worker.join();