| 286 | return do_lock_normal(thread, m, flags, ut, mode); |
| 287 | } |
| 288 | static ErrorCode do_lock_pp(Thread *thread, ptr<umutex> m, uint flags, |
| 289 | std::uint64_t ut, umutex_lock_mode mode) { |
| 290 | // ORBIS_LOG_TODO(__FUNCTION__, m, flags, ut, mode); |
| 291 | return do_lock_normal(thread, m, flags, ut, mode); |
| 292 | } |
| 293 | static ErrorCode do_unlock_normal(Thread *thread, ptr<umutex> m, uint flags) { |
| 294 | ORBIS_LOG_TRACE(__FUNCTION__, thread->tid, m, flags); |
| 295 |
no test coverage detected