Chris@16: // Chris@16: // yield.hpp Chris@16: // ~~~~~~~~~ Chris@16: // Chris@101: // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com) Chris@16: // Chris@16: // Distributed under the Boost Software License, Version 1.0. (See accompanying Chris@16: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: // Chris@16: Chris@16: #include "coroutine.hpp" Chris@16: Chris@16: #ifndef reenter Chris@16: # define reenter(c) BOOST_ASIO_CORO_REENTER(c) Chris@16: #endif Chris@16: Chris@16: #ifndef yield Chris@16: # define yield BOOST_ASIO_CORO_YIELD Chris@16: #endif Chris@16: Chris@16: #ifndef fork Chris@16: # define fork BOOST_ASIO_CORO_FORK Chris@16: #endif