| 43 | } |
| 44 | |
| 45 | void ThreadPool_noWorkSteal(benchmark::State& state) { |
| 46 | for ([[maybe_unused]] const auto& _ : state) |
| 47 | autoScheduleTasks(/*enableWorkSteal = */ false); |
| 48 | } |
| 49 | |
| 50 | void ThreadPool_withWorkSteal(benchmark::State& state) { |
| 51 | for ([[maybe_unused]] const auto& _ : state) |
nothing calls this directly
no test coverage detected