improve scheduler debugging
[model-checker.git] / schedule.cc
index 2498347c44cc6e2cb6cbb870a829465c318504db..0f550c41962a5046c6934fe5380d17e0cda39e36 100644 (file)
@@ -13,19 +13,20 @@ Thread *Scheduler::next_thread(void)
 {
        Thread *t = model->schedule_next_thread();
 
-       print();
-
        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)
@@ -39,7 +40,7 @@ void Scheduler::print()
                printf("Current thread: %d\n", current->get_id());
        else
                printf("No current thread\n");
-       printf("# Threads in ready list: %ld\n", readyList.size());
+       printf("Num. threads in ready list: %ld\n", readyList.size());
 
        std::list<Thread *>::iterator it;
        for (it = readyList.begin(); it != readyList.end(); it++)