| 53 | } |
| 54 | |
| 55 | bool thread_executor::shutdown_requested() const { |
| 56 | return m_atomic_abort.load(std::memory_order_relaxed); |
| 57 | } |
| 58 | |
| 59 | void thread_executor::shutdown() { |
| 60 | const auto abort = m_atomic_abort.exchange(true, std::memory_order_relaxed); |
nothing calls this directly
no outgoing calls
no test coverage detected