Merge branch 'master' of /home/git/random-fuzzer into thread-switch
[c11tester.git] / threads-model.h
index e159697d9d54ce10c3cfb1fe204352a9e0bd7435..8047e1f33d963d001fab179feab210c405ed7f34 100644 (file)
@@ -49,6 +49,7 @@ public:
 
        static int swap(ucontext_t *ctxt, Thread *t);
        static int swap(Thread *t, ucontext_t *ctxt);
+       static int swap(Thread *t, Thread *t2);
 
        thread_state get_state() const { return state; }
        void set_state(thread_state s);
@@ -102,6 +103,7 @@ public:
        bool is_model_thread() const { return model_thread; }
 
        void * get_stack_addr() { return stack; }
+       ClockVector * get_acq_fence_cv() { return acq_fence_cv; }
 
        friend void thread_startup();
 #ifdef TLS
@@ -137,6 +139,9 @@ private:
        /** @brief The parent Thread which created this Thread */
        Thread * const parent;
 
+       /** @brief Acquire fence cv */
+       ClockVector *acq_fence_cv;
+
        /** @brief The THREAD_CREATE ModelAction which created this Thread */
        ModelAction *creation;