MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / __hxcpp_condition_wait

Function __hxcpp_condition_wait

src/hx/Thread.cpp:266–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

264 condition->release();
265}
266void __hxcpp_condition_wait(Dynamic inCond)
267{
268 auto condition = inCond.Cast<hx::thread::ConditionVariable>();
269
270 condition->wait();
271}
272bool __hxcpp_condition_timed_wait(Dynamic inCond, double timeout)
273{
274 return hx::Throw(HX_CSTRING("Not Implemented"));

Callers

nothing calls this directly

Calls 1

waitMethod · 0.80

Tested by

no test coverage detected