X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=mutex.cc;h=44f64ff764b3c0c80a2c789d4f5bfcff40a7ef1e;hb=1b2081fd7a99dd894f75b8606073d3eae57a0013;hp=91b0b9a33f8a4109d82e9334f127534b1d6ec137;hpb=a4090d03cc1a5f5bca8f10986d74b76a9bb45371;p=c11tester.git diff --git a/mutex.cc b/mutex.cc index 91b0b9a3..44f64ff7 100644 --- a/mutex.cc +++ b/mutex.cc @@ -1,28 +1,34 @@ -#include +#include "mutex.h" #include "model.h" +#include "execution.h" #include "threads-model.h" #include "clockvector.h" +#include "action.h" -namespace std { -mutex::mutex() { - state.islocked=false; - thread_id_t tid=thread_current()->get_id(); - state.alloc_tid=tid; - state.alloc_clock=model->get_cv(tid)->getClock(tid); +namespace cdsc { + +mutex::mutex() +{ + state.locked = NULL; + thread_id_t tid = thread_current()->get_id(); + state.alloc_tid = tid; + state.alloc_clock = model->get_execution()->get_cv(tid)->getClock(tid); } - -void mutex::lock() { - model->switch_to_master(new ModelAction(ATOMIC_LOCK, std::memory_order_seq_cst, this)); + +void mutex::lock() +{ + model->switch_to_master(new ModelAction(ATOMIC_LOCK, std::memory_order_seq_cst, this)); } - -bool mutex::try_lock() { - model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this)); - return thread_current()->get_return_value(); + +bool mutex::try_lock() +{ + return model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this)); } -void mutex::unlock() { - model->switch_to_master(new ModelAction(ATOMIC_UNLOCK, std::memory_order_seq_cst, this)); +void mutex::unlock() +{ + model->switch_to_master(new ModelAction(ATOMIC_UNLOCK, std::memory_order_seq_cst, this)); } }