Back to home page

EIC code displayed by LXR

 
 

    


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 //  thread.hpp
0005 //
0006 //  (C) Copyright 2013 Vicente J. Botet Escriba
0007 //
0008 //  Distributed under the Boost Software License, Version 1.0. (See
0009 //  accompanying file LICENSE_1_0.txt or copy at
0010 //  http://www.boost.org/LICENSE_1_0.txt)
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