X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=classlist.h;h=bebbf39fa0cd7e1770e2033377fa55f500f63be3;hb=2666d71b7d5a31e7707a42d8727e4c6e25b6b30d;hp=90f111d8454973b85bbb40650ac876232db6e7c4;hpb=0c8b810bcf730dcf184c0b35eef074f89a40fac3;p=c11tester.git diff --git a/classlist.h b/classlist.h index 90f111d8..bebbf39f 100644 --- a/classlist.h +++ b/classlist.h @@ -1,6 +1,9 @@ #ifndef CLASSLIST_H #define CLASSLIST_H +#include #include "stl-model.h" +#include "hashset.h" +#include "modeltypes.h" class ClockVector; class CycleGraph; @@ -9,16 +12,34 @@ class ModelAction; class ModelChecker; class ModelExecution; class ModelHistory; -class Node; -class NodeStack; class Scheduler; class Thread; class TraceAnalysis; class Fuzzer; +class NewFuzzer; class FuncNode; class FuncInst; +class Predicate; +class ConcretePredicate; +class WaitObj; struct model_snapshot_members; struct bug_message; + typedef SnapList action_list_t; +typedef SnapList func_id_list_t; +typedef SnapList func_inst_list_t; +typedef HashTable inst_act_map_t; + +typedef HashSet PredSet; +typedef HSIterator PredSetIter; + +typedef HashSet value_set_t; +typedef HSIterator value_set_iter; +typedef HashSet loc_set_t; +typedef HSIterator loc_set_iter; +typedef HashSet thrd_id_set_t; +typedef HSIterator thrd_id_set_iter; + +extern volatile int modellock; #endif