atomic_flag.hpp 992 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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, 2020 Andrey Semashev
  9. */
  10. /*!
  11. * \file atomic/atomic_flag.hpp
  12. *
  13. * This header contains definition of \c atomic_flag.
  14. */
  15. #ifndef BOOST_ATOMIC_ATOMIC_FLAG_HPP_INCLUDED_
  16. #define BOOST_ATOMIC_ATOMIC_FLAG_HPP_INCLUDED_
  17. #include <boost/atomic/capabilities.hpp>
  18. #include <boost/atomic/detail/config.hpp>
  19. #include <boost/atomic/detail/atomic_flag_impl.hpp>
  20. #include <boost/atomic/detail/header.hpp>
  21. #ifdef BOOST_HAS_PRAGMA_ONCE
  22. #pragma once
  23. #endif
  24. namespace boost {
  25. namespace atomics {
  26. //! Atomic flag
  27. typedef atomics::detail::atomic_flag_impl< false > atomic_flag;
  28. } // namespace atomics
  29. using atomics::atomic_flag;
  30. } // namespace boost
  31. #include <boost/atomic/detail/footer.hpp>
  32. #endif // BOOST_ATOMIC_ATOMIC_FLAG_HPP_INCLUDED_