Wait for a task to complete (for worker threads inside thread pool)
| 270 | |
| 271 | // Wait for a task to complete (for worker threads inside thread pool) |
| 272 | static void threadpool_wait_handler(task_wait_handle wait_task) |
| 273 | { |
| 274 | threadpool_data_wrapper wrapper = get_threadpool_data_wrapper(); |
| 275 | thread_task_loop(wrapper.owning_threadpool, wrapper.thread_id, wait_task); |
| 276 | } |
| 277 | |
| 278 | // Worker thread main loop |
| 279 | static void worker_thread(threadpool_data* owning_threadpool, std::size_t thread_id) |
nothing calls this directly
no test coverage detected