| 5 | #include "concurrencpp/threads/thread.h" |
| 6 | |
| 7 | void concurrencpp::details::throw_runtime_shutdown_exception(std::string_view executor_name) { |
| 8 | const auto error_msg = std::string(executor_name) + consts::k_executor_shutdown_err_msg; |
| 9 | throw errors::runtime_shutdown(error_msg); |
| 10 | } |
| 11 | |
| 12 | std::string concurrencpp::details::make_executor_worker_name(std::string_view executor_name) { |
| 13 | return std::string(executor_name) + " worker"; |
nothing calls this directly
no outgoing calls
no test coverage detected