| 206 | mutex->acquire(); |
| 207 | } |
| 208 | bool __hxcpp_mutex_try(Dynamic inMutex) |
| 209 | { |
| 210 | auto mutex = inMutex.Cast<hx::thread::RecursiveMutex>(); |
| 211 | |
| 212 | return mutex->tryAcquire(); |
| 213 | } |
| 214 | void __hxcpp_mutex_release(Dynamic inMutex) |
| 215 | { |
| 216 | auto mutex = inMutex.Cast<hx::thread::RecursiveMutex>(); |
nothing calls this directly
no test coverage detected