File indexing completed on 2024-11-15 09:32:46
0001 #ifndef BOOST_THREAD_THREAD_ONLY_HPP
0002 #define BOOST_THREAD_THREAD_ONLY_HPP
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #include <boost/thread/detail/platform.hpp>
0013
0014 #if defined(BOOST_THREAD_PLATFORM_WIN32)
0015 #include <boost/thread/win32/thread_data.hpp>
0016 #elif defined(BOOST_THREAD_PLATFORM_PTHREAD)
0017 #include <boost/thread/pthread/thread_data.hpp>
0018 #else
0019 #error "Boost threads unavailable on this platform"
0020 #endif
0021
0022 #include <boost/thread/detail/thread.hpp>
0023 #if defined BOOST_THREAD_PROVIDES_INTERRUPTIONS
0024 #include <boost/thread/detail/thread_interruption.hpp>
0025 #endif
0026 #include <boost/thread/condition_variable.hpp>
0027
0028
0029 #endif