5 #include "threads-model.h"
6 #include "clockvector.h"
14 thread_id_t tid = thread_current()->get_id();
15 state.alloc_tid = tid;
16 state.alloc_clock = model->get_execution()->get_cv(tid)->getClock(tid);
21 model->switch_to_master(new ModelAction(ATOMIC_LOCK, std::memory_order_seq_cst, this));
24 bool mutex::try_lock()
26 return model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this));
31 model->switch_to_master(new ModelAction(ATOMIC_UNLOCK, std::memory_order_seq_cst, this));