Fix snapshot code
[model-checker.git] / mutex.cc
index 145000548be4665f7f8a2cfb4fb657c2ab9a5382..d5ec40fff402df19093d68975c8a8914c0fa7567 100644 (file)
--- a/mutex.cc
+++ b/mutex.cc
@@ -1,28 +1,34 @@
 #include <mutex>
 
 #include "model.h"
+#include "execution.h"
 #include "threads-model.h"
 #include "clockvector.h"
 #include "action.h"
 
 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() {
-  return model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, 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));
 }
 
-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));
 }
 
 }