123456789101112131415161718192021 |
- #ifndef BOOST_THREAD_CONDITION_VARIABLE_HPP
- #define BOOST_THREAD_CONDITION_VARIABLE_HPP
- #include <boost/thread/detail/platform.hpp>
- #if defined(BOOST_THREAD_PLATFORM_WIN32)
- #include <boost/thread/win32/condition_variable.hpp>
- #elif defined(BOOST_THREAD_PLATFORM_PTHREAD)
- #include <boost/thread/pthread/condition_variable.hpp>
- #else
- #error "Boost threads unavailable on this platform"
- #endif
- #endif
|