Back to home page

EIC code displayed by LXR

 
 

    


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 //  thread_heap_alloc.hpp
0005 //
0006 //  (C) Copyright 2008 Anthony Williams 
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_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