| 127 | } |
| 128 | |
| 129 | std::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 | |
| 135 | std::shared_ptr<concurrencpp::manual_executor> runtime::make_manual_executor() { |
| 136 | auto executor = std::make_shared<concurrencpp::manual_executor>(); |