threads/model: move switch_to_master from class Thread to class ModelChecker
[c11tester.git] / schedule.h
index 28f5b8d0fa864794f54f6b5788aec859412b8b8f..bdccf1185e07d69e3b84fae13146ee9b6cae5bf0 100644 (file)
@@ -1,19 +1,19 @@
 #ifndef __SCHEDULE_H__
 #define __SCHEDULE_H__
 
-#include "libthreads.h"
-#include "model.h"
+#include <queue>
 
-struct scheduler {
-       void (*init)(void);
-       void (*exit)(void);
-       void (*add_thread)(struct thread *t);
-       struct thread * (*next_thread)(void);
-       struct thread * (*get_current_thread)(void);
+#include "threads_internal.h"
+#include "model.h"
 
-       void *priv;
+class Scheduler {
+public:
+       void add_thread(Thread *t);
+       Thread * next_thread(void);
+       Thread * get_current_thread(void);
+private:
+       std::queue<Thread *> queue;
+       Thread *current;
 };
 
-void scheduler_init(ModelChecker *mod);
-
 #endif /* __SCHEDULE_H__ */