]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/fiber/channel_op_status.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / fiber / channel_op_status.hpp
1 // Copyright Oliver Kowalke 2013.
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
6 #ifndef BOOST_FIBERS_CHANNEL_OP_STATUS_H
7 #define BOOST_FIBERS_CHANNEL_OP_STATUS_H
8
9 #include <boost/config.hpp>
10
11 #include <boost/fiber/detail/config.hpp>
12
13 #ifdef BOOST_HAS_ABI_HEADERS
14 # include BOOST_ABI_PREFIX
15 #endif
16
17 namespace boost {
18 namespace fibers {
19
20 enum class channel_op_status {
21 success = 0,
22 empty,
23 full,
24 closed,
25 timeout
26 };
27
28 }}
29
30 #ifdef BOOST_HAS_ABI_HEADERS
31 # include BOOST_ABI_SUFFIX
32 #endif
33
34 #endif // BOOST_FIBERS_CHANNEL_OP_STATUS_H