add function calls for volatile loads and stores
[c11tester.git] / model.h
diff --git a/model.h b/model.h
index 8983d017f80fa1c5a17d53bd03edb49cedea102b..a37bd49d5e0deb818cdfa833336140554fa984a8 100644 (file)
--- a/model.h
+++ b/model.h
@@ -59,12 +59,15 @@ public:
        uint64_t switch_to_master(ModelAction *act);
 
        bool assert_bug(const char *msg, ...);
+       bool assert_race(const char *msg, ...);
+
        void assert_user_bug(const char *msg);
 
        model_params params;
        void add_trace_analysis(TraceAnalysis *a) {     trace_analyses.push_back(a); }
        void set_inspect_plugin(TraceAnalysis *a) {     inspect_plugin=a;       }
-
+       void startMainThread();
+       void startChecker();
        MEMALLOC
 private:
        /** Flag indicates whether to restart the model checker. */
@@ -72,7 +75,6 @@ private:
 
        /** The scheduler to use: tracks the running/ready Threads */
        Scheduler * const scheduler;
-       NodeStack * const node_stack;
        ModelExecution *execution;
        Thread * init_thread;
        ModelHistory *history;
@@ -107,5 +109,4 @@ private:
 };
 
 extern ModelChecker *model;
-extern bool modelchecker_started;
 #endif /* __MODEL_H__ */