| 553 | } |
| 554 | |
| 555 | void SpawnAddsThreaded(ThreadPool* pool, int nthreads, int nadds, AddTaskFunc add_func, |
| 556 | StopToken stop_token = StopToken::Unstoppable()) { |
| 557 | DoSpawnAddsThreaded(pool, nthreads, nadds, std::move(add_func), |
| 558 | std::move(stop_token)); |
| 559 | } |
| 560 | |
| 561 | void SpawnAddsThreadedAndCancel(ThreadPool* pool, int nthreads, int nadds, |
| 562 | AddTaskFunc add_func, StopSource* stop_source) { |
nothing calls this directly
no test coverage detected