Lines Matching refs:Threaded
16 - [Single-Threaded-Workers](#single-threaded-workers)
17 - [Multi-Threaded-Workers](#multi-threaded-workers)
35 …Threaded-Worker](#single-threaded-workers) for the calling thread. This worker is used for schedul…
85 …).workerThreads.count == 0`), then the task is queued on to the [Single-Threaded-Worker](#single-t…
86 …Threaded-Workers](#multi-threaded-workers) is picked. If any workers have entered a [spin-for-work…
90 …nction for worker fibers. `run()` is called by the start of each [Multi-Threaded-Worker](#multi-th…
92 This function is shared by both the [Single-Threaded](#single-threaded-workers) and [Multi-Threaded…
130 If the worker is a [Multi-Threaded-Worker](#multi-threaded-workers), `waitForWork()` begins by ente…
181 A worker is created as either a Single-Threaded-Worker or Multi-Threaded-Worker.
185 …ce is that the Multi-Threaded-Worker spawns a dedicated worker thread to call `marl::Scheduler::ru…
187 ### Single-Threaded-Workers
222 ### Multi-Threaded-Workers
224 Multi-Threaded-Workers are created when the `marl::Scheduler` is constructed with a positive number…