]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/fiber/include/boost/fiber/channel_op_status.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / fiber / include / boost / fiber / channel_op_status.hpp
CommitLineData
7c673cae
FG
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_QUEUE_OP_STATUS_H
7#define BOOST_FIBERS_QUEUE_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
17namespace boost {
18namespace fibers {
19
20enum 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_QUEUE_OP_STATUS_H