| 624 | } |
| 625 | |
| 626 | bool thread_pool_executor::shutdown_requested() const { |
| 627 | return m_abort.load(std::memory_order_relaxed); |
| 628 | } |
| 629 | |
| 630 | void thread_pool_executor::shutdown() { |
| 631 | const auto abort = m_abort.exchange(true, std::memory_order_relaxed); |
nothing calls this directly
no outgoing calls
no test coverage detected