Do not allow a thread to stash the next pending action if its last action was a SLEEP...
[c11tester.git] / cmodelint.cc
index cbf21320a52b6fd0792298bdfb15492d7464e83a..3c59fa01a68277cdbb74fc0a6af55698530b1b9a 100644 (file)
@@ -10,7 +10,7 @@
 #include "threads-model.h"
 #include "datarace.h"
 
-memory_order orders[8] = {
+memory_order orders[7] = {
        memory_order_relaxed, memory_order_consume, memory_order_acquire,
        memory_order_release, memory_order_acq_rel, memory_order_seq_cst,
 };
@@ -112,10 +112,10 @@ VOLATILELOAD(64)
                model->switch_to_master(new ModelAction(ATOMIC_WRITE, position, memory_order_relaxed, obj, (uint64_t) val)); \
                *((volatile uint ## size ## _t *)obj) = val;            \
                thread_id_t tid = thread_current()->get_id();           \
-               for(int i=0;i < size / 8;i++) {                         \
+               for(int i=0;i < size / 8;i++) {                         \
                        recordWrite(tid, (void *)(((char *)obj)+i));          \
                }                                                       \
-}
+       }
 
 VOLATILESTORE(8)
 VOLATILESTORE(16)
@@ -334,8 +334,7 @@ void cds_atomic_thread_fence(int atomic_index, const char * position) {
  */
 
 void cds_func_entry(const char * funcName) {
-       if (!model) return;
-
+       ensureModel();
        Thread * th = thread_current();
        uint32_t func_id;
 
@@ -359,8 +358,7 @@ void cds_func_entry(const char * funcName) {
 }
 
 void cds_func_exit(const char * funcName) {
-       if (!model) return;
-
+       ensureModel();
        Thread * th = thread_current();
        uint32_t func_id;