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

Method manual_executor

source/executors/manual_executor.cpp:6–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4using concurrencpp::manual_executor;
5
6manual_executor::manual_executor() :
7 derivable_executor<concurrencpp::manual_executor>(details::consts::k_manual_executor_name), m_abort(false), m_atomic_abort(false) {
8}
9
10void manual_executor::enqueue(concurrencpp::task task) {
11 std::unique_lock<decltype(m_lock)> lock(m_lock);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected