Lines Matching refs:worker
99 - numThreads - Number of worker threads the replayer will use.
213 A worker thread's flow looks like so
226 and worker threads. Every time an increment is dispatched, an Event object is also created.
230 - **SettingUp** - The worker is in the process of completing all non-time sensitive work
231 - **Waiting** - The worker is waiting on the main thread to signal it.
232 - **Signaled** - The worker has just been signaled by the main thread
233 - **Running** - The worker is running again and finishing the rest of its work.
235 When the main thread wants to finish the execution of a worker, the worker can either still be
236 **SettingUp**, in which the main thread will wait, or the worker will be **Waiting**, in which the
237 main thread will **Signal** it to complete. The worker thread changes itself to the **Running**
239 the worker thread has actually started completing its execution, rather than being preempted right
240 after signalling. Once this happens, the main thread schedules the next worker. This makes sure
244 worker and main thread respectively.
248 During a **BuferUpdate**, the worker thread will wait until **Signaled** to unlock and post a