X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=mutex.cc;h=0776db8eef5857b34c47bdbf3493194c9672097a;hp=d5ec40fff402df19093d68975c8a8914c0fa7567;hb=bca0ba0915c24c008381dca02cb954b725d7817c;hpb=9d9b9121ffed4c7406275da34b055040ea5090a9 diff --git a/mutex.cc b/mutex.cc index d5ec40ff..0776db8e 100644 --- a/mutex.cc +++ b/mutex.cc @@ -1,4 +1,4 @@ -#include +#include "mutex.h" #include "model.h" #include "execution.h" @@ -6,21 +6,22 @@ #include "clockvector.h" #include "action.h" -namespace std { +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); + ClockVector *cv = model->get_execution()->get_cv(tid); + state.alloc_clock = cv == NULL ? 0 : cv->getClock(tid); } - + void mutex::lock() { model->switch_to_master(new ModelAction(ATOMIC_LOCK, std::memory_order_seq_cst, this)); } - + bool mutex::try_lock() { return model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this));