Redesign actionlist and change acquire fence
[c11tester.git] / action.h
index 35368ef7fff3ca0bea12de7b375260e331cbded1..c5ba6d7dda9f9593a315a26c3d1da336a50b5a0f 100644 (file)
--- a/action.h
+++ b/action.h
@@ -192,12 +192,6 @@ public:
        /* to accomodate pthread create and join */
        Thread * thread_operand;
        void set_thread_operand(Thread *th) { thread_operand = th; }
-       void setTraceRef(sllnode<ModelAction *> *ref) { trace_ref = ref; }
-       void setThrdMapRef(sllnode<ModelAction *> *ref) { thrdmap_ref = ref; }
-       void setActionRef(sllnode<ModelAction *> *ref) { action_ref = ref; }
-       sllnode<ModelAction *> * getTraceRef() { return trace_ref; }
-       sllnode<ModelAction *> * getThrdMapRef() { return thrdmap_ref; }
-       sllnode<ModelAction *> * getActionRef() { return action_ref; }
 
        SNAPSHOTALLOC
 private:
@@ -233,9 +227,6 @@ private:
         */
        ClockVector *cv;
        ClockVector *rf_cv;
-       sllnode<ModelAction *> * trace_ref;
-       sllnode<ModelAction *> * thrdmap_ref;
-       sllnode<ModelAction *> * action_ref;
 
        /** @brief The value written (for write or RMW; undefined for read) */
        uint64_t value;