| 16 | void MutexSys::lock() { EnterCriticalSection((CRITICAL_SECTION*)mutex); } |
| 17 | bool MutexSys::try_lock() { return TryEnterCriticalSection((CRITICAL_SECTION*)mutex) != 0; } |
| 18 | void MutexSys::unlock() { LeaveCriticalSection((CRITICAL_SECTION*)mutex); } |
| 19 | } |
| 20 | #endif |
| 21 |
no outgoing calls
no test coverage detected