]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/interprocess/sync/cv_status.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / interprocess / sync / cv_status.hpp
CommitLineData
1e59de90
TL
1// cv_status.hpp
2//
3// Copyright (C) 2011 Vicente J. Botet Escriba
4// Copyright (C) 2021 Ion Gaztanaga
5//
6// Distributed under the Boost Software License, Version 1.0. (See
7// accompanying file LICENSE_1_0.txt or copy at
8// http://www.boost.org/LICENSE_1_0.txt)
9
10#ifndef BOOST_INTERPROCESS_CV_STATUS_HPP
11#define BOOST_INTERPROCESS_CV_STATUS_HPP
12
13#include <boost/core/scoped_enum.hpp>
14
15namespace boost {
16namespace interprocess {
17
18 // enum class cv_status;
19 BOOST_SCOPED_ENUM_DECLARE_BEGIN(cv_status)
20 {
21 no_timeout,
22 timeout
23 }
24 BOOST_SCOPED_ENUM_DECLARE_END(cv_status)
25
26} //namespace interprocess
27} //namespace boost
28
29#endif // header