more reformatting/indentation
[model-checker.git] / schedule.cc
index 3769a5acaf8db809934e80a450f06360ca526db1..1791605b7c38842c37d11553c37f663c9dc88c38 100644 (file)
@@ -3,6 +3,11 @@
 #include "common.h"
 #include "model.h"
 
+Scheduler::Scheduler() :
+       current(NULL)
+{
+}
+
 void Scheduler::add_thread(Thread *t)
 {
        DEBUG("thread %d\n", t->get_id());
@@ -50,7 +55,7 @@ void Scheduler::print()
                DEBUG("No current thread\n");
        DEBUG("Num. threads in ready list: %zu\n", readyList.size());
 
-       std::list<Thread *>::iterator it;
+       std::list<Thread *, MyAlloc< Thread * > >::iterator it;
        for (it = readyList.begin(); it != readyList.end(); it++)
                DEBUG("In ready list: thread %d\n", (*it)->get_id());
 }