File indexing completed on 2025-12-16 09:43:50
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef BOOST_ATOMIC_DETAIL_FENCE_ARCH_OPERATIONS_HPP_INCLUDED_
0015 #define BOOST_ATOMIC_DETAIL_FENCE_ARCH_OPERATIONS_HPP_INCLUDED_
0016
0017 #include <boost/atomic/detail/config.hpp>
0018 #include <boost/atomic/detail/platform.hpp>
0019
0020 #if defined(BOOST_ATOMIC_DETAIL_CORE_ARCH_BACKEND_HEADER)
0021 #include BOOST_ATOMIC_DETAIL_CORE_ARCH_BACKEND_HEADER(boost/atomic/detail/fence_arch_ops_)
0022 #else
0023 #include <boost/atomic/detail/fence_operations_emulated.hpp>
0024
0025 namespace boost {
0026 namespace atomics {
0027 namespace detail {
0028
0029 typedef fence_operations_emulated fence_arch_operations;
0030
0031 }
0032 }
0033 }
0034
0035 #endif
0036
0037 #ifdef BOOST_HAS_PRAGMA_ONCE
0038 #pragma once
0039 #endif
0040
0041 #endif