| 252 | condition->acquire(); |
| 253 | } |
| 254 | bool __hxcpp_condition_try_acquire(Dynamic inCond) |
| 255 | { |
| 256 | auto condition = inCond.Cast<hx::thread::ConditionVariable>(); |
| 257 | |
| 258 | return condition->tryAcquire(); |
| 259 | } |
| 260 | void __hxcpp_condition_release(Dynamic inCond) |
| 261 | { |
| 262 | auto condition = inCond.Cast<hx::thread::ConditionVariable>(); |
nothing calls this directly
no test coverage detected