X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=schedule.cc;h=69e3d88803bcc06d15ee2fed115330b1397662f5;hp=d6ec03830abc9e395e16dec32945e827f739a52b;hb=3519c47202090f3c4a69de0e89aaa2617b17ff75;hpb=d4361e592c3a19d3a4ec24cea410118eac798b79 diff --git a/schedule.cc b/schedule.cc index d6ec0383..69e3d888 100644 --- a/schedule.cc +++ b/schedule.cc @@ -3,12 +3,26 @@ #include "common.h" #include "model.h" +/** Constructor */ +Scheduler::Scheduler() : + current(NULL) +{ +} + +/** + * Add a Thread to the scheduler's ready list. + * @param t The Thread to add + */ void Scheduler::add_thread(Thread *t) { DEBUG("thread %d\n", t->get_id()); readyList.push_back(t); } +/** + * Remove a given Thread from the scheduler. + * @param t The Thread to remove + */ void Scheduler::remove_thread(Thread *t) { if (current == t) @@ -17,7 +31,11 @@ void Scheduler::remove_thread(Thread *t) readyList.remove(t); } -Thread * Scheduler::next_thread(void) +/** + * Remove one Thread from the scheduler. This implementation performs FIFO. + * @return The next Thread to run + */ +Thread * Scheduler::next_thread() { Thread *t = model->schedule_next_thread(); @@ -37,20 +55,27 @@ Thread * Scheduler::next_thread(void) return t; } -Thread * Scheduler::get_current_thread(void) +/** + * @return The currently-running Thread + */ +Thread * Scheduler::get_current_thread() const { return current; } -void Scheduler::print() +/** + * Print debugging information about the current state of the scheduler. Only + * prints something if debugging is enabled. + */ +void Scheduler::print() const { if (current) DEBUG("Current thread: %d\n", current->get_id()); else DEBUG("No current thread\n"); - DEBUG("Num. threads in ready list: %ld\n", readyList.size()); + DEBUG("Num. threads in ready list: %zu\n", readyList.size()); - std::list::iterator it; + std::list >::const_iterator it; for (it = readyList.begin(); it != readyList.end(); it++) DEBUG("In ready list: thread %d\n", (*it)->get_id()); }