MCPcopy Create free account
hub / github.com/David-Haim/concurrencpp / shutdown_requested

Method shutdown_requested

source/timers/timer_queue.cpp:230–232  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228}
229
230bool timer_queue::shutdown_requested() const noexcept {
231 return m_atomic_abort.load(std::memory_order_relaxed);
232}
233
234void timer_queue::shutdown() {
235 const auto state_before = m_atomic_abort.exchange(true, std::memory_order_relaxed);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected