14 #ifndef ATOMIC_PRV_STD_H_
15 #define ATOMIC_PRV_STD_H_
17 #include <type_traits>
21 #include "atomic_prv_mfence_x86.h"
23 #if ATOMIC_LLONG_LOCK_FREE == 2
24 typedef long long int_cas_max;
25 #elif ATOMIC_LONG_LOCK_FREE == 2
26 typedef long int_cas_max;
27 #elif ATOMIC_INT_LOCK_FREE == 2
28 typedef int int_cas_max;
30 typedef int_cas_max uint_cas_max;
33 class atomic<T, typename std::enable_if<std::is_integral<T>::value || std::is_pointer<T>::value>::type>
34 :
public std::atomic<T> {
36 atomic() noexcept =
default;
37 atomic(
const atomic &t) noexcept : std::atomic<T>() { *
this = (T)t;}
38 atomic(
const T &t) : std::atomic<T>(t) {}
39 atomic& operator=(
const T &t) noexcept{this->store(t);
return *
this; }
40 bool compare_set_strong(
const T &oldv,
const T &newv) noexcept {
42 return std::atomic<T>::compare_exchange_strong(expected, newv);
44 bool decAndTest() noexcept {
45 return (--( *
this) == 0);
47 bool addAndTest(T t) noexcept {
48 return ((( *
this) += t) == 0);