Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-11-15 09:05:26

0001 //          Copyright Oliver Kowalke 2013.
0002 // Distributed under the Boost Software License, Version 1.0.
0003 //    (See accompanying file LICENSE_1_0.txt or copy at
0004 //          http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 #ifndef BOOST_FIBERS_CHANNEL_OP_STATUS_H
0007 #define BOOST_FIBERS_CHANNEL_OP_STATUS_H
0008 
0009 #include <boost/config.hpp>
0010 
0011 #include <boost/fiber/detail/config.hpp>
0012 
0013 #ifdef BOOST_HAS_ABI_HEADERS
0014 #  include BOOST_ABI_PREFIX
0015 #endif
0016 
0017 namespace boost {
0018 namespace fibers {
0019 
0020 enum class channel_op_status {
0021     success = 0,
0022     empty,
0023     full,
0024     closed,
0025     timeout
0026 };
0027 
0028 }}
0029 
0030 #ifdef BOOST_HAS_ABI_HEADERS
0031 #  include BOOST_ABI_SUFFIX
0032 #endif
0033 
0034 #endif // BOOST_FIBERS_CHANNEL_OP_STATUS_H