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