fix scheduling stuff to get nice round robin scheduler behavior...
[cdsspec-compiler.git] / schedule.h
index d4780c884d672afd4b3eabc4e1fc22aaf30be289..6ae2d2b53eeb354d522d9aac187c38cbdd4226b7 100644 (file)
@@ -5,8 +5,8 @@
 #ifndef __SCHEDULE_H__
 #define __SCHEDULE_H__
 
-#include <list>
 #include "mymemory.h"
+#include "modeltypes.h"
 
 /* Forward declaration */
 class Thread;
@@ -27,7 +27,8 @@ public:
        void remove_thread(Thread *t);
        void sleep(Thread *t);
        void wake(Thread *t);
-       Thread * next_thread(Thread *t);
+       Thread * select_next_thread();
+       void set_current_thread(Thread *t);
        Thread * get_current_thread() const;
        void print() const;
        enabled_type_t * get_enabled_array() const { return enabled; };
@@ -37,6 +38,9 @@ public:
        void update_sleep_set(Node *n);
        bool is_enabled(const Thread *t) const;
        bool is_enabled(thread_id_t tid) const;
+       bool is_sleep_set(const Thread *t) const;
+       void set_scheduler_thread(thread_id_t tid);
+
 
        SNAPSHOTALLOC
 private: