fix bug - 'backedge' in predicate.cc uninitialized
[c11tester.git] / classlist.h
1 #ifndef CLASSLIST_H
2 #define CLASSLIST_H
3 #include <inttypes.h>
4 #include "stl-model.h"
5 #include "hashset.h"
6
7 class ClockVector;
8 class CycleGraph;
9 class CycleNode;
10 class ModelAction;
11 class ModelChecker;
12 class ModelExecution;
13 class ModelHistory;
14 class Scheduler;
15 class Thread;
16 class TraceAnalysis;
17 class Fuzzer;
18 class FuncNode;
19 class FuncInst;
20 class Predicate;
21
22 struct model_snapshot_members;
23 struct bug_message;
24 typedef SnapList<ModelAction *> action_list_t;
25 typedef SnapList<uint32_t> func_id_list_t;
26 typedef SnapList<FuncInst *> func_inst_list_t;
27 typedef HSIterator<Predicate *, uintptr_t, 0, model_malloc, model_calloc, model_free> PredSetIter;
28 typedef HashSet<Predicate *, uintptr_t, 0, model_malloc, model_calloc, model_free> PredSet;
29
30 extern volatile int modellock;
31 #endif