| 133 | uint UmtxChain::notify_one(const UmtxKey &key) { return notify_n(key, 1); } |
| 134 | |
| 135 | uint UmtxChain::notify_all(const UmtxKey &key) { |
| 136 | return notify_n(key, std::numeric_limits<sint>::max()); |
| 137 | } |
| 138 | } // namespace orbis |
| 139 | |
| 140 | orbis::ErrorCode orbis::umtx_lock_umtx(Thread *thread, ptr<umtx> umtx, ulong id, |
no test coverage detected