Chris@16: #ifndef BOOST_THREAD_THREAD_HEAP_ALLOC_HPP Chris@16: #define BOOST_THREAD_THREAD_HEAP_ALLOC_HPP Chris@16: Chris@16: // thread_heap_alloc.hpp Chris@16: // Chris@16: // (C) Copyright 2008 Anthony Williams Chris@16: // Chris@16: // Distributed under the Boost Software License, Version 1.0. (See Chris@16: // accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: #include Chris@16: Chris@16: #if defined(BOOST_THREAD_PLATFORM_WIN32) Chris@16: #include Chris@16: #elif defined(BOOST_THREAD_PLATFORM_PTHREAD) Chris@16: #include Chris@16: #else Chris@16: #error "Boost threads unavailable on this platform" Chris@16: #endif Chris@16: Chris@16: Chris@16: #endif