| 228 | } |
| 229 | |
| 230 | bool timer_queue::shutdown_requested() const noexcept { |
| 231 | return m_atomic_abort.load(std::memory_order_relaxed); |
| 232 | } |
| 233 | |
| 234 | void timer_queue::shutdown() { |
| 235 | const auto state_before = m_atomic_abort.exchange(true, std::memory_order_relaxed); |
nothing calls this directly
no outgoing calls
no test coverage detected