fix bug
[c11tester.git] / mutex.cc
1 #include "mutex.h"
2
3 #include "model.h"
4 #include "execution.h"
5 #include "threads-model.h"
6 #include "clockvector.h"
7 #include "action.h"
8
9 namespace cdsc {
10
11 mutex::mutex()
12 {
13         state.locked = NULL;
14         thread_id_t tid = thread_current()->get_id();
15         state.alloc_tid = tid;
16         ClockVector *cv = model->get_execution()->get_cv(tid);
17         state.alloc_clock = cv  == NULL ? 0 : cv->getClock(tid);
18 }
19
20 void mutex::lock()
21 {
22         model->switch_to_master(new ModelAction(ATOMIC_LOCK, std::memory_order_seq_cst, this));
23 }
24
25 bool mutex::try_lock()
26 {
27         return model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this));
28 }
29
30 void mutex::unlock()
31 {
32         model->switch_to_master(new ModelAction(ATOMIC_UNLOCK, std::memory_order_seq_cst, this));
33 }
34
35 }