atomic_prv_std.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13  ***************************************************************************/
14 #ifndef ATOMIC_PRV_STD_H_
15 #define ATOMIC_PRV_STD_H_
16 
17 #include <type_traits>
18 #include <inttypes.h>
19 #include <atomic>
20 
21 #include "atomic_prv_mfence_x86.h"
22 
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;
29 #endif
30 typedef int_cas_max uint_cas_max;
31 
32 template <typename T>
33 class atomic<T, typename std::enable_if<std::is_integral<T>::value || std::is_pointer<T>::value>::type>
34 : public std::atomic<T> {
35 public:
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 {
41  T expected = oldv;
42  return std::atomic<T>::compare_exchange_strong(expected, newv);
43  }
44  bool decAndTest() noexcept {
45  return (--( *this) == 0);
46  }
47  bool addAndTest(T t) noexcept {
48  return ((( *this) += t) == 0);
49  }
50 };
51 
52 #endif /*ATOMIC_PRV_STD_H_*/

Generated for KAME4 by  doxygen 1.8.3