| 489 | } |
| 490 | |
| 491 | auto get_scheduler_on_thread(std::size_t threadIndex) noexcept -> scheduler |
| 492 | { |
| 493 | return scheduler{*this, *get_remote_queue(), threadIndex}; |
| 494 | } |
| 495 | |
| 496 | // The caller must ensure that the constraints object is valid for the lifetime of the scheduler. |
| 497 | auto get_constrained_scheduler(nodemask const * constraints) noexcept -> scheduler |
nothing calls this directly
no test coverage detected