continuation.hpp 441 B

12345678910111213
  1. // Copyright Oliver Kowalke 2017.
  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. #if defined(BOOST_USE_UCONTEXT)
  6. #include <boost/context/continuation_ucontext.hpp>
  7. #elif defined(BOOST_USE_WINFIB)
  8. #include <boost/context/continuation_winfib.hpp>
  9. #else
  10. #include <boost/context/continuation_fcontext.hpp>
  11. #endif