X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=mutex.cc;h=145000548be4665f7f8a2cfb4fb657c2ab9a5382;hb=dc9c89654982c64264dfee7b1ea23e9a5e88e18e;hp=6ef297a594d6b897110e7663c1f3753f859e0c3a;hpb=81ea453e58cbb85fddff3aa8919dfbc59c3140eb;p=model-checker.git diff --git a/mutex.cc b/mutex.cc index 6ef297a..1450005 100644 --- a/mutex.cc +++ b/mutex.cc @@ -1,7 +1,9 @@ -#include "mutex.h" +#include + #include "model.h" -#include "threads.h" +#include "threads-model.h" #include "clockvector.h" +#include "action.h" namespace std { mutex::mutex() { @@ -16,8 +18,7 @@ void mutex::lock() { } bool mutex::try_lock() { - model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this)); - return thread_current()->get_return_value(); + return model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this)); } void mutex::unlock() {