schedule: print debug info
[model-checker.git] / schedule.h
index 801af0d839c7beb274aaadc66c719f627f2713a7..86e4e40da18c5bc41bfd3908d76b4c48dc80b20b 100644 (file)
@@ -1,9 +1,20 @@
 #ifndef __SCHEDULE_H__
 #define __SCHEDULE_H__
 
-#include "libthreads.h"
+#include <list>
 
-void schedule_add_thread(struct thread *t);
-int schedule_choose_next(struct thread **t);
+#include "threads.h"
+#include "model.h"
+
+class Scheduler {
+public:
+       void add_thread(Thread *t);
+       Thread * next_thread(void);
+       Thread * get_current_thread(void);
+       void print();
+private:
+       std::list<Thread *> readyList;
+       Thread *current;
+};
 
 #endif /* __SCHEDULE_H__ */