From 8f487c6e83220b87ccba309c477636ea7abd1225 Mon Sep 17 00:00:00 2001 From: Marian Krivos Date: Tue, 23 Aug 2011 06:59:23 +0000 Subject: [PATCH] trunk/branch integration: VxWorks & Wince --- Foundation/include/Poco/RWLock.h | 2 ++ Foundation/include/Poco/Semaphore.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Foundation/include/Poco/RWLock.h b/Foundation/include/Poco/RWLock.h index 91c37a56d..5c0681794 100644 --- a/Foundation/include/Poco/RWLock.h +++ b/Foundation/include/Poco/RWLock.h @@ -50,6 +50,8 @@ #else #include "Poco/RWLock_WIN32.h" #endif +#elif defined(POCO_ANDROID) +#include "Poco/RWLock_Android.h" #elif defined(POCO_VXWORKS) #include "Poco/RWLock_VX.h" #else diff --git a/Foundation/include/Poco/Semaphore.h b/Foundation/include/Poco/Semaphore.h index d38aa514c..77169e811 100644 --- a/Foundation/include/Poco/Semaphore.h +++ b/Foundation/include/Poco/Semaphore.h @@ -46,6 +46,8 @@ #if defined(POCO_OS_FAMILY_WINDOWS) #include "Poco/Semaphore_WIN32.h" +#elif defined(POCO_VXWORKS) +#include "Poco/Semaphore_VX.h" #else #include "Poco/Semaphore_POSIX.h" #endif