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

Method shutdown_requested

source/executors/thread_pool_executor.cpp:626–628  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

624}
625
626bool thread_pool_executor::shutdown_requested() const {
627 return m_abort.load(std::memory_order_relaxed);
628}
629
630void thread_pool_executor::shutdown() {
631 const auto abort = m_abort.exchange(true, std::memory_order_relaxed);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected