| 55 | |
| 56 | #if defined(_TTHREAD_WIN32_) |
| 57 | condition_variable::condition_variable() : mWaitersCount(0) |
| 58 | { |
| 59 | mEvents[_CONDITION_EVENT_ONE] = CreateEvent(NULL, FALSE, FALSE, NULL); |
| 60 | mEvents[_CONDITION_EVENT_ALL] = CreateEvent(NULL, TRUE, FALSE, NULL); |
| 61 | InitializeCriticalSection(&mWaitersCountLock); |
| 62 | } |
| 63 | #endif |
| 64 | |
| 65 | #if defined(_TTHREAD_WIN32_) |
nothing calls this directly
no outgoing calls
no test coverage detected