X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=mutex.cc;h=145000548be4665f7f8a2cfb4fb657c2ab9a5382;hb=8d4a273698366b54612e40742ef6fb7bd63c7090;hp=6ef297a594d6b897110e7663c1f3753f859e0c3a;hpb=f4d77c40b4029cdc18f4aaa5a4e01dfbcfca5f7b;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() {