MCPcopy Create free account
hub / github.com/David-Haim/concurrencpp / await

Method await

source/threads/async_condition_variable.cpp:61–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61lazy_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
66void async_condition_variable::notify_one() {
67 std::unique_lock<std::mutex> lock(m_lock);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected