X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=mutex.cc;h=a431321e1aba9a11e1d7f56a630978d453ce3d6a;hp=6ef297a594d6b897110e7663c1f3753f859e0c3a;hb=0229244d21ca78bf781e41684810e9fb6d5ca56c;hpb=12b1a10eeff58161619bafcfd8e288b3e2c76621 diff --git a/mutex.cc b/mutex.cc index 6ef297a5..a431321e 100644 --- a/mutex.cc +++ b/mutex.cc @@ -1,27 +1,34 @@ #include "mutex.h" + #include "model.h" -#include "threads.h" +#include "execution.h" +#include "threads-model.h" #include "clockvector.h" +#include "action.h" + +namespace cdsc { -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); +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)); } }