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

Function __hxcpp_condition_release

src/hx/Thread.cpp:260–265  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

258 return condition->tryAcquire();
259}
260void __hxcpp_condition_release(Dynamic inCond)
261{
262 auto condition = inCond.Cast<hx::thread::ConditionVariable>();
263
264 condition->release();
265}
266void __hxcpp_condition_wait(Dynamic inCond)
267{
268 auto condition = inCond.Cast<hx::thread::ConditionVariable>();

Callers

nothing calls this directly

Calls 1

releaseMethod · 0.45

Tested by

no test coverage detected