.gitignore: ignore 'benchmarks' folder
[model-checker.git] / include / stdatomic.h
1
2 #include "impatomic.h"
3
4 #ifdef __cplusplus
5
6
7 using std::atomic_flag;
8
9
10 using std::atomic_bool;
11
12
13 using std::atomic_address;
14
15
16 using std::atomic_char;
17
18
19 using std::atomic_schar;
20
21
22 using std::atomic_uchar;
23
24
25 using std::atomic_short;
26
27
28 using std::atomic_ushort;
29
30
31 using std::atomic_int;
32
33
34 using std::atomic_uint;
35
36
37 using std::atomic_long;
38
39
40 using std::atomic_ulong;
41
42
43 using std::atomic_llong;
44
45
46 using std::atomic_ullong;
47
48
49 using std::atomic_wchar_t;
50
51
52 using std::atomic;
53 using std::memory_order;
54 using std::memory_order_relaxed;
55 using std::memory_order_acquire;
56 using std::memory_order_release;
57 using std::memory_order_acq_rel;
58 using std::memory_order_seq_cst;
59
60 #endif
61