trunk/branch integration: VxWorks & Wince

This commit is contained in:
Marian Krivos 2011-08-23 06:59:23 +00:00
parent f88dacd2c3
commit 8f487c6e83
2 changed files with 4 additions and 0 deletions

View File

@ -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

View File

@ -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