X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=schedule.cc;h=1791605b7c38842c37d11553c37f663c9dc88c38;hb=551ed6f7408e5376b3ea355997e378a1f2387e69;hp=2498347c44cc6e2cb6cbb870a829465c318504db;hpb=5e2338d51de26e3ea875587f62b095c5d0111ae2;p=c11tester.git diff --git a/schedule.cc b/schedule.cc index 2498347c..1791605b 100644 --- a/schedule.cc +++ b/schedule.cc @@ -3,32 +3,46 @@ #include "common.h" #include "model.h" +Scheduler::Scheduler() : + current(NULL) +{ +} + void Scheduler::add_thread(Thread *t) { DEBUG("thread %d\n", t->get_id()); readyList.push_back(t); } -Thread *Scheduler::next_thread(void) +void Scheduler::remove_thread(Thread *t) { - Thread *t = model->schedule_next_thread(); + if (current == t) + current = NULL; + else + readyList.remove(t); +} - print(); +Thread * Scheduler::next_thread(void) +{ + Thread *t = model->schedule_next_thread(); if (t != NULL) { + current = t; readyList.remove(t); - return t; + } else if (readyList.empty()) { + t = NULL; + } else { + t = readyList.front(); + current = t; + readyList.pop_front(); } - if (readyList.empty()) - return NULL; - current = readyList.front(); - readyList.pop_front(); + print(); - return current; + return t; } -Thread *Scheduler::get_current_thread(void) +Thread * Scheduler::get_current_thread(void) { return current; } @@ -36,12 +50,12 @@ Thread *Scheduler::get_current_thread(void) void Scheduler::print() { if (current) - printf("Current thread: %d\n", current->get_id()); + DEBUG("Current thread: %d\n", current->get_id()); else - printf("No current thread\n"); - printf("# Threads in ready list: %ld\n", readyList.size()); + DEBUG("No current thread\n"); + DEBUG("Num. threads in ready list: %zu\n", readyList.size()); - std::list::iterator it; + std::list >::iterator it; for (it = readyList.begin(); it != readyList.end(); it++) - printf("In ready list: thread %d\n", (*it)->get_id()); + DEBUG("In ready list: thread %d\n", (*it)->get_id()); }