initial commit for declaring member functions of Fuzzer as virtual
[c11tester.git] / fuzzer.h
index 691477bd6e2e3db8833add08de8c3d5f619bd94d..eb6fd4ef35d7d2c05f5838829fac89962f8c23fe 100644 (file)
--- a/fuzzer.h
+++ b/fuzzer.h
@@ -7,9 +7,11 @@
 class Fuzzer {
 public:
        Fuzzer() {}
-       int selectWrite(ModelAction *read, SnapVector<const ModelAction *>* rf_set);
-       Thread * selectThread(Node *n, int * threadlist, int numthreads);
+       virtual int selectWrite(ModelAction *read, SnapVector<ModelAction *>* rf_set);
+       Thread * selectThread(int * threadlist, int numthreads);
        Thread * selectNotify(action_list_t * waiters);
+       bool shouldSleep(const ModelAction *sleep);
+       bool shouldWake(const ModelAction *sleep);
        MEMALLOC
 private:
 };