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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user