Lock model check when we terminate proxy thread
[c11tester.git] / classlist.h
index 90f111d8454973b85bbb40650ac876232db6e7c4..c7c84759ce1065687fad0c4e55bb85dcb5e0db09 100644 (file)
@@ -1,5 +1,6 @@
 #ifndef CLASSLIST_H
 #define CLASSLIST_H
+#include <inttypes.h>
 #include "stl-model.h"
 
 class ClockVector;
@@ -9,8 +10,6 @@ class ModelAction;
 class ModelChecker;
 class ModelExecution;
 class ModelHistory;
-class Node;
-class NodeStack;
 class Scheduler;
 class Thread;
 class TraceAnalysis;
@@ -21,4 +20,8 @@ class FuncInst;
 struct model_snapshot_members;
 struct bug_message;
 typedef SnapList<ModelAction *> action_list_t;
+typedef SnapList<uint32_t> func_id_list_t;
+typedef SnapList<FuncInst *> func_inst_list_t;
+
+extern volatile int modellock;
 #endif