| 3146 | } |
| 3147 | |
| 3148 | void Task::notifyReadyToRun() { |
| 3149 | EventCompletionNotifier readyToRunNotifier; |
| 3150 | readyToRunNotifier.activate(std::move(taskReadyToRunPromises_)); |
| 3151 | readyToRunNotifier.notify(); |
| 3152 | } |
| 3153 | |
| 3154 | void Task::testingVisitDrivers(const std::function<void(Driver*)>& callback) { |
| 3155 | std::lock_guard<std::timed_mutex> l(mutex_); |
no test coverage detected