| 97 | |
| 98 | void RecursiveMutex::unlock() { |
| 99 | _threadChecker.onUnlockRefCounted(); |
| 100 | _innerMutex.unlock(); |
| 101 | } |
| 102 | |
| 103 | void RecursiveMutex::assertIsLocked() { |
| 104 | _threadChecker.assertIsLocked(); |
| 105 | } |
| 106 | |
| 107 | std::unique_lock<std::mutex> ConditionVariable::toStdLock(std::unique_lock<Mutex>& lock) { |
| 108 | if (lock.owns_lock()) { |