| 34 | } // anonymous namespace |
| 35 | |
| 36 | void CpuCompNode::CpuDispatchableBase::add_callback(Task&& task) { |
| 37 | dispatch(std::move(task)); |
| 38 | } |
| 39 | |
| 40 | class CpuCompNode::WorkerQueue final : public AsyncQueueSC<TaskElem, WorkerQueue> { |
| 41 | const Locator m_locator; |
no test coverage detected