1 /* 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 * Copyright (c) 2011 Helge Bahmann 7 * Copyright (c) 2013 Tim Blechmann 8 * Copyright (c) 2014 Andrey Semashev 9 */ 10 /*! 11 * \file atomic/atomic_flag.hpp 12 * 13 * This header contains definition of \c atomic_flag. 14 */ 15 16 #ifndef BOOST_ATOMIC_ATOMIC_FLAG_HPP_INCLUDED_ 17 #define BOOST_ATOMIC_ATOMIC_FLAG_HPP_INCLUDED_ 18 19 #include <boost/atomic/capabilities.hpp> 20 #include <boost/atomic/detail/operations.hpp> 21 #include <boost/atomic/detail/atomic_flag.hpp> 22 23 #ifdef BOOST_HAS_PRAGMA_ONCE 24 #pragma once 25 #endif 26 27 namespace boost { 28 29 using atomics::atomic_flag; 30 31 } // namespace boost 32 33 #endif // BOOST_ATOMIC_ATOMIC_FLAG_HPP_INCLUDED_ 34