|
||||
File indexing completed on 2025-01-30 09:33:47
0001 // 0002 // yield.hpp 0003 // ~~~~~~~~~ 0004 // 0005 // Copyright (c) 2003-2023 Christopher M. Kohlhoff (chris at kohlhoff dot com) 0006 // 0007 // Distributed under the Boost Software License, Version 1.0. (See accompanying 0008 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 0009 // 0010 0011 #include "coroutine.hpp" 0012 0013 #ifndef reenter 0014 # define reenter(c) BOOST_ASIO_CORO_REENTER(c) 0015 #endif 0016 0017 #ifndef yield 0018 # define yield BOOST_ASIO_CORO_YIELD 0019 #endif 0020 0021 #ifndef fork 0022 # define fork BOOST_ASIO_CORO_FORK 0023 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |