summaryrefslogtreecommitdiff
path: root/src/threading/event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/threading/event.cpp')
-rw-r--r--src/threading/event.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/threading/event.cpp b/src/threading/event.cpp
index c3c2ca029..b7f16154e 100644
--- a/src/threading/event.cpp
+++ b/src/threading/event.cpp
@@ -25,17 +25,20 @@ DEALINGS IN THE SOFTWARE.
#include "threading/event.h"
-#if __cplusplus < 201103L
Event::Event()
+ : notified(false)
{
-#ifdef _WIN32
+#if __cplusplus < 201103L
+# ifdef _WIN32
event = CreateEvent(NULL, false, false, NULL);
-#else
+# else
pthread_cond_init(&cv, NULL);
pthread_mutex_init(&mutex, NULL);
+# endif
#endif
}
+#if __cplusplus < 201103L
Event::~Event()
{
#ifdef _WIN32