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

Method make_worker_thread_executor

source/runtime/runtime.cpp:129–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127}
128
129std::shared_ptr<concurrencpp::worker_thread_executor> runtime::make_worker_thread_executor() {
130 auto executor = std::make_shared<worker_thread_executor>();
131 m_registered_executors.register_executor(executor);
132 return executor;
133}
134
135std::shared_ptr<concurrencpp::manual_executor> runtime::make_manual_executor() {
136 auto executor = std::make_shared<concurrencpp::manual_executor>();

Callers 11

test_resume_on_refMethod · 0.80
mainFunction · 0.80
async_incrementFunction · 0.80
async_insertFunction · 0.80
test_async_cv_awaitFunction · 0.80
test_async_cv_await_predFunction · 0.80
test_async_cv_notify_oneFunction · 0.80
test_async_cv_notify_allFunction · 0.80

Calls 1

register_executorMethod · 0.80

Tested by 8

test_resume_on_refMethod · 0.64
test_async_cv_awaitFunction · 0.64
test_async_cv_await_predFunction · 0.64
test_async_cv_notify_oneFunction · 0.64
test_async_cv_notify_allFunction · 0.64