| 57 | */ |
| 58 | |
| 59 | runtime_options::runtime_options() noexcept : |
| 60 | max_cpu_threads(details::default_max_cpu_workers()), |
| 61 | max_thread_pool_executor_waiting_time(details::k_default_max_worker_wait_time), |
| 62 | max_background_threads(details::default_max_background_workers()), |
| 63 | max_background_executor_waiting_time(details::k_default_max_worker_wait_time), |
| 64 | max_timer_queue_waiting_time(std::chrono::seconds(details::consts::k_max_timer_queue_worker_waiting_time_sec)) {} |
| 65 | |
| 66 | /* |
| 67 | runtime |
nothing calls this directly
no test coverage detected