segmented_stack_allocator.hpp 454 B

123456789101112131415
  1. // Copyright Oliver Kowalke 2009.
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #include <boost/config.hpp>
  6. #if defined(BOOST_USE_SEGMENTED_STACKS)
  7. # if defined(BOOST_WINDOWS)
  8. # error "segmented stacks are not supported by Windows"
  9. # else
  10. # include <boost/coroutine/posix/segmented_stack_allocator.hpp>
  11. # endif
  12. #endif