| 49 | } |
| 50 | |
| 51 | int thread_executor::max_concurrency_level() const noexcept { |
| 52 | return details::consts::k_thread_executor_max_concurrency_level; |
| 53 | } |
| 54 | |
| 55 | bool thread_executor::shutdown_requested() const { |
| 56 | return m_atomic_abort.load(std::memory_order_relaxed); |
nothing calls this directly
no outgoing calls
no test coverage detected