File indexing completed on 2025-12-15 10:09:25
0001 #ifndef BOOST_THREAD_THREAD_HEAP_ALLOC_HPP
0002 #define BOOST_THREAD_THREAD_HEAP_ALLOC_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_heap_alloc.hpp>
0016 #elif defined(BOOST_THREAD_PLATFORM_PTHREAD)
0017 #include <boost/thread/pthread/thread_heap_alloc.hpp>
0018 #else
0019 #error "Boost threads unavailable on this platform"
0020 #endif
0021
0022
0023 #endif