Check whether the task is ready and include an acquire barrier if it is
| 89 | |
| 90 | // Check whether the task is ready and include an acquire barrier if it is |
| 91 | bool ready() const |
| 92 | { |
| 93 | return is_finished(state.load(std::memory_order_acquire)); |
| 94 | } |
| 95 | |
| 96 | // Run a single continuation |
| 97 | template<typename Sched> |
nothing calls this directly
no test coverage detected