• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
10 namespace boost {
11 namespace fibers {
12 namespace detail {
13 
14 enum class spinlock_status {
15     locked = 0,
16     unlocked
17 };
18 
19 }}}
20 
21 #endif // BOOST_FIBERS_SPINLOCK_STATUS_H
22