Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:35:34

0001 
0002 //          Copyright Oliver Kowalke 2017.
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //    (See accompanying file LICENSE_1_0.txt or copy at
0005 //          http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 #ifndef BOOST_FIBERS_SPINLOCK_STATUS_H
0008 #define BOOST_FIBERS_SPINLOCK_STATUS_H
0009 
0010 namespace boost {
0011 namespace fibers {
0012 namespace detail {
0013 
0014 enum class spinlock_status {
0015     locked = 0,
0016     unlocked
0017 };
0018 
0019 }}}
0020 
0021 #endif // BOOST_FIBERS_SPINLOCK_STATUS_H