X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=impatomic.cc;h=2d48989c147d051bd61d3a4d01fe0e2ba1bcf9ea;hb=1f2a30ddc8f38f3f45d62d169b766c0c38364ecd;hp=571789d662f154e109025e23c6d09ac89f998692;hpb=cc2accafaceffae9593b64b9f526d6c8d6239bd4;p=model-checker.git diff --git a/impatomic.cc b/impatomic.cc index 571789d..2d48989 100644 --- a/impatomic.cc +++ b/impatomic.cc @@ -2,13 +2,13 @@ #include "common.h" #include "model.h" #include "threads-model.h" +#include "action.h" namespace std { bool atomic_flag_test_and_set_explicit ( volatile atomic_flag * __a__, memory_order __x__ ) { volatile bool * __p__ = &((__a__)->__f__); - model->switch_to_master(new ModelAction(ATOMIC_RMWR, __x__, (void *) __p__)); - bool result = (bool) thread_current()->get_return_value(); + bool result = (bool) model->switch_to_master(new ModelAction(ATOMIC_RMWR, __x__, (void *) __p__)); model->switch_to_master(new ModelAction(ATOMIC_RMW, __x__, (void *) __p__, true)); return result; }