summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/Condition.h
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2008-10-03 18:46:00 +0000
committerStephen D. Huston <shuston@apache.org>2008-10-03 18:46:00 +0000
commit1555cda8e52e27be9ce9ee00026cf6f0e4507d28 (patch)
treeb0e74b32303ae49e73828c28e9603a9fe41c058c /cpp/src/qpid/sys/Condition.h
parentc8fcdb008af74a937599a9b94ae169762bbc437d (diff)
downloadqpid-python-1555cda8e52e27be9ce9ee00026cf6f0e4507d28.tar.gz
Add Windows threading and synchronization primitives
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@701486 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/Condition.h')
-rw-r--r--cpp/src/qpid/sys/Condition.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/qpid/sys/Condition.h b/cpp/src/qpid/sys/Condition.h
index 961c15e1ee..fe0e3a1c71 100644
--- a/cpp/src/qpid/sys/Condition.h
+++ b/cpp/src/qpid/sys/Condition.h
@@ -24,6 +24,8 @@
#ifdef USE_APR_PLATFORM
#include "apr/Condition.h"
+#elif defined (_WIN32)
+#include "windows/Condition.h"
#else
#include "posix/Condition.h"
#endif