X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=schedule.cc;h=67b40ec88a809d5c2bff10e07787481a7d934566;hb=d279e84ed265af079ea035d5dff49183def2c144;hp=60d84a8af6b307d1d51d892e3712aa8d8910ab87;hpb=df437a93a0599b75a4df8967d2943a01ca931a9a;p=model-checker.git diff --git a/schedule.cc b/schedule.cc index 60d84a8..67b40ec 100644 --- a/schedule.cc +++ b/schedule.cc @@ -1,4 +1,4 @@ -#include "threads_internal.h" +#include "threads.h" #include "schedule.h" #include "common.h" #include "model.h" @@ -6,21 +6,43 @@ void Scheduler::add_thread(Thread *t) { DEBUG("thread %d\n", t->get_id()); - queue.push(t); + readyList.push_back(t); } -Thread *Scheduler::next_thread(void) +Thread * Scheduler::next_thread(void) { - if (queue.empty()) - return NULL; + Thread *t = model->schedule_next_thread(); - current = queue.front(); - queue.pop(); + if (t != NULL) { + current = t; + readyList.remove(t); + } else if (readyList.empty()) { + t = NULL; + } else { + t = readyList.front(); + current = t; + readyList.pop_front(); + } - return current; + print(); + + return t; } -Thread *Scheduler::get_current_thread(void) +Thread * Scheduler::get_current_thread(void) { return current; } + +void Scheduler::print() +{ + if (current) + printf("Current thread: %d\n", current->get_id()); + else + printf("No current thread\n"); + printf("Num. threads in ready list: %ld\n", readyList.size()); + + std::list::iterator it; + for (it = readyList.begin(); it != readyList.end(); it++) + printf("In ready list: thread %d\n", (*it)->get_id()); +}