promise: add is_compatible_exclusive()
[c11tester.git] / impatomic.cc
1 #include "impatomic.h"
2 #include "common.h"
3 #include "model.h"
4 #include "threads-model.h"
5
6 namespace std {
7
8 bool atomic_flag_test_and_set_explicit ( volatile atomic_flag * __a__, memory_order __x__ ) {
9         volatile bool * __p__ = &((__a__)->__f__);
10         bool result = (bool) model->switch_to_master(new ModelAction(ATOMIC_RMWR, __x__, (void *) __p__));
11         model->switch_to_master(new ModelAction(ATOMIC_RMW, __x__, (void *) __p__, true));
12         return result;
13 }
14
15 bool atomic_flag_test_and_set( volatile atomic_flag* __a__ )
16 { return atomic_flag_test_and_set_explicit( __a__, memory_order_seq_cst ); }
17
18 void atomic_flag_clear_explicit
19 ( volatile atomic_flag* __a__, memory_order __x__ )
20 {
21         volatile bool * __p__ = &((__a__)->__f__);
22         model->switch_to_master(new ModelAction(ATOMIC_WRITE, __x__, (void *) __p__, false));
23 }
24
25 void atomic_flag_clear( volatile atomic_flag* __a__ )
26 { atomic_flag_clear_explicit( __a__, memory_order_seq_cst ); }
27
28 void __atomic_flag_wait__( volatile atomic_flag* __a__ )
29 { while ( atomic_flag_test_and_set( __a__ ) ); }
30
31 void __atomic_flag_wait_explicit__( volatile atomic_flag* __a__,
32                                     memory_order __x__ )
33 { while ( atomic_flag_test_and_set_explicit( __a__, __x__ ) ); }
34
35 }