| 550 | } |
| 551 | |
| 552 | void thread_pool_executor::mark_worker_active(size_t index) noexcept { |
| 553 | assert(index < m_workers.size()); |
| 554 | m_idle_workers.set_active(index); |
| 555 | } |
| 556 | |
| 557 | void thread_pool_executor::enqueue(concurrencpp::task task) { |
| 558 | const auto this_worker = details::s_tl_thread_pool_data.this_worker; |
no test coverage detected