| 508 | } |
| 509 | |
| 510 | std::chrono::milliseconds thread_pool_worker::max_worker_idle_time() const noexcept { |
| 511 | return m_max_idle_time; |
| 512 | } |
| 513 | |
| 514 | bool thread_pool_worker::appears_empty() const noexcept { |
| 515 | return m_private_queue.empty() && !m_task_found_or_abort.load(std::memory_order_relaxed); |
nothing calls this directly
no outgoing calls
no test coverage detected