2
0
mirror of https://github.com/boostorg/thread.git synced 2026-01-30 20:32:10 +00:00

Thread: Add the possibility to use the more complete and generic implementation of shared_mutex in windows.

[SVN r77667]
This commit is contained in:
Vicente J. Botet Escriba
2012-03-31 15:37:44 +00:00
parent 27aa44acb5
commit da8dc9f5aa

View File

@@ -11,7 +11,11 @@
#include <boost/thread/detail/platform.hpp>
#if defined(BOOST_THREAD_PLATFORM_WIN32)
#if defined(BOOST_THREAD_SHARED_MUTEX_GENERIC)
#include <boost/thread/pthread/shared_mutex.hpp>
#else
#include <boost/thread/win32/shared_mutex.hpp>
#endif
#elif defined(BOOST_THREAD_PLATFORM_PTHREAD)
#include <boost/thread/pthread/shared_mutex.hpp>
#else