X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=schedule.cc;h=915bbc90fb3daa8d5985decdf9e1641a93e59993;hb=4b8be988ca74cfc09f53a97c3d7bc0a43829b902;hp=444e1a82982535339f241d5eb203fddf1d00a15a;hpb=9d9c0f4e9909c2f58889e198a065479003f7bced;p=model-checker.git diff --git a/schedule.cc b/schedule.cc index 444e1a8..915bbc9 100644 --- a/schedule.cc +++ b/schedule.cc @@ -7,6 +7,32 @@ #include "model.h" #include "nodestack.h" +/** + * Format an "enabled_type_t" for printing + * @param e The type to format + * @param str The output character array + */ +static void enabled_type_to_string(enabled_type_t e, char *str) +{ + const char *res; + switch (e) { + case THREAD_DISABLED: + res = "disabled"; + break; + case THREAD_ENABLED: + res = "enabled"; + break; + case THREAD_SLEEP_SET: + res = "sleep"; + break; + default: + ASSERT(0); + res = NULL; + break; + } + strcpy(str, res); +} + /** Constructor */ Scheduler::Scheduler() : enabled(NULL), @@ -184,7 +210,8 @@ Thread * Scheduler::next_thread(Thread *t) break; } if (curr_thread_index == old_curr_thread) { - print(); + if (DBG_ENABLED()) + print(); return NULL; } } @@ -196,7 +223,8 @@ Thread * Scheduler::next_thread(Thread *t) } current = t; - print(); + if (DBG_ENABLED()) + print(); return t; } @@ -215,8 +243,13 @@ Thread * Scheduler::get_current_thread() const */ void Scheduler::print() const { - if (current) - DEBUG("Current thread: %d\n", id_to_int(current->get_id())); - else - DEBUG("No current thread\n"); + int curr_id = current ? id_to_int(current->get_id()) : -1; + + model_print("Scheduler: "); + for (int i = 0; i < enabled_len; i++) { + char str[20]; + enabled_type_to_string(enabled[i], str); + model_print("[%i: %s%s]", i, i == curr_id ? "current, " : "", str); + } + model_print("\n"); }