| 12 | namespace moodycamel { namespace debug { |
| 13 | struct DebugMutex { |
| 14 | DebugMutex() { InitializeCriticalSectionAndSpinCount(&cs, 0x400); } |
| 15 | ~DebugMutex() { DeleteCriticalSection(&cs); } |
| 16 | |
| 17 | void lock() { EnterCriticalSection(&cs); } |
nothing calls this directly
no outgoing calls
no test coverage detected