rename mypthread.h to pthread.h
[c11tester.git] / mutex.cc
index a431321e1aba9a11e1d7f56a630978d453ce3d6a..44f64ff764b3c0c80a2c789d4f5bfcff40a7ef1e 100644 (file)
--- a/mutex.cc
+++ b/mutex.cc
@@ -15,12 +15,12 @@ mutex::mutex()
        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));
 }
-       
+
 bool mutex::try_lock()
 {
        return model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this));