| 64 | |
| 65 | #if defined(_TTHREAD_WIN32_) |
| 66 | condition_variable::~condition_variable() |
| 67 | { |
| 68 | CloseHandle(mEvents[_CONDITION_EVENT_ONE]); |
| 69 | CloseHandle(mEvents[_CONDITION_EVENT_ALL]); |
| 70 | DeleteCriticalSection(&mWaitersCountLock); |
| 71 | } |
| 72 | #endif |
| 73 | |
| 74 | #if defined(_TTHREAD_WIN32_) |
nothing calls this directly
no outgoing calls
no test coverage detected