Go to the documentation of this file.00001 #ifndef BOOST_MEMORY_ORDER_HPP_INCLUDED
00002 #define BOOST_MEMORY_ORDER_HPP_INCLUDED
00003
00004
00005
00006 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
00007 # pragma once
00008 #endif
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 namespace boost
00022 {
00023
00024 enum memory_order
00025 {
00026 memory_order_relaxed = 0,
00027 memory_order_acquire = 1,
00028 memory_order_release = 2,
00029 memory_order_acq_rel = 3,
00030 memory_order_seq_cst = 7
00031 };
00032
00033 }
00034
00035 #endif // #ifndef BOOST_MEMORY_ORDER_HPP_INCLUDED