1
2// Copyright Oliver Kowalke 2017.
3// Distributed under the Boost Software License, Version 1.0.
4// (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt)
6
7#ifndef BOOST_FIBERS_SPINLOCK_STATUS_H
8#define BOOST_FIBERS_SPINLOCK_STATUS_H
9
10namespace boost {
11namespace fibers {
12namespace detail {
13
14enum class spinlock_status {
15 locked = 0,
16 unlocked
17};
18
19}}}
20
21#endif // BOOST_FIBERS_SPINLOCK_STATUS_H
22

source code of boost/libs/fiber/include/boost/fiber/detail/spinlock_status.hpp