atomic_flag.hpp 775 B

123456789101112131415161718192021222324252627282930313233
  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. #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/operations.hpp>
  19. #include <boost/atomic/detail/atomic_flag.hpp>
  20. #ifdef BOOST_HAS_PRAGMA_ONCE
  21. #pragma once
  22. #endif
  23. namespace boost {
  24. using atomics::atomic_flag;
  25. } // namespace boost
  26. #endif // BOOST_ATOMIC_ATOMIC_FLAG_HPP_INCLUDED_