| 59 | } |
| 60 | |
| 61 | lazy_result<void> async_condition_variable::await(std::shared_ptr<executor> resume_executor, scoped_async_lock& lock) { |
| 62 | verify_await_params(resume_executor, lock); |
| 63 | return await_impl(std::move(resume_executor), lock); |
| 64 | } |
| 65 | |
| 66 | void async_condition_variable::notify_one() { |
| 67 | std::unique_lock<std::mutex> lock(m_lock); |
nothing calls this directly
no outgoing calls
no test coverage detected