X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=classlist.h;h=e74ebcf64bdbb5aace60103095d47dcf09bfd395;hp=c7c84759ce1065687fad0c4e55bb85dcb5e0db09;hb=7742256df627848c1c375f979f5369a45c92057b;hpb=6898da1b7c46ddf3427ea0127dc68f8cc6016511 diff --git a/classlist.h b/classlist.h index c7c84759..e74ebcf6 100644 --- a/classlist.h +++ b/classlist.h @@ -2,6 +2,8 @@ #define CLASSLIST_H #include #include "stl-model.h" +#include "hashset.h" +#include "modeltypes.h" class ClockVector; class CycleGraph; @@ -14,14 +16,33 @@ class Scheduler; class Thread; class TraceAnalysis; class Fuzzer; +class NewFuzzer; class FuncNode; class FuncInst; +class Predicate; +class ConcretePredicate; +class WaitObj; +class actionlist; + +#include "actionlist.h" struct model_snapshot_members; struct bug_message; -typedef SnapList action_list_t; + +typedef SnapList simple_action_list_t; +typedef actionlist action_list_t; typedef SnapList func_id_list_t; typedef SnapList func_inst_list_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