| 162 | } |
| 163 | |
| 164 | bool worker_thread_executor::shutdown_requested() const { |
| 165 | return m_atomic_abort.load(std::memory_order_relaxed); |
| 166 | } |
| 167 | |
| 168 | void worker_thread_executor::shutdown() { |
| 169 | const auto abort = m_atomic_abort.exchange(true, std::memory_order_relaxed); |
nothing calls this directly
no outgoing calls
no test coverage detected