| 142 | } |
| 143 | |
| 144 | void worker_thread_executor::enqueue(concurrencpp::task task) { |
| 145 | if (details::s_tl_this_worker == this) { |
| 146 | return enqueue_local(task); |
| 147 | } |
| 148 | |
| 149 | enqueue_foreign(task); |
| 150 | } |
| 151 | |
| 152 | void worker_thread_executor::enqueue(std::span<concurrencpp::task> tasks) { |
| 153 | if (details::s_tl_this_worker == this) { |
nothing calls this directly
no outgoing calls
no test coverage detected