| 202 | } |
| 203 | |
| 204 | void manual_executor::wait_for_task() { |
| 205 | wait_for_tasks_impl(1); |
| 206 | } |
| 207 | |
| 208 | bool manual_executor::wait_for_task_for(std::chrono::milliseconds max_waiting_time) { |
| 209 | return wait_for_tasks_impl(1, time_point_from_now(max_waiting_time)) == 1; |
no outgoing calls