X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=schedule.cc;h=26217d0a99dfd918d37d90fd77b3a803aefadc26;hp=14e6475af1a781803647f7d3bd6fa56887ccf6d4;hb=02d98b0950685cf746e6698e06c53fdfbd1a4e1e;hpb=8c82e3813dcbe9f61197a45d0543abc5d131a0fa diff --git a/schedule.cc b/schedule.cc index 14e6475a..26217d0a 100644 --- a/schedule.cc +++ b/schedule.cc @@ -29,21 +29,41 @@ void Scheduler::set_enabled(Thread *t, enabled_type_t enabled_status) { enabled_len=threadid+1; } enabled[threadid]=enabled_status; + if (enabled_status == THREAD_DISABLED) + model->check_promises_thread_disabled(); } /** * @brief Check if a Thread is currently enabled + * + * Check if a Thread is currently enabled. "Enabled" includes both + * THREAD_ENABLED and THREAD_SLEEP_SET. * @param t The Thread to check * @return True if the Thread is currently enabled */ bool Scheduler::is_enabled(Thread *t) const { - int id = id_to_int(t->get_id()); - return (id >= enabled_len) ? false : (enabled[id] != THREAD_DISABLED); + return is_enabled(t->get_id()); +} + +/** + * @brief Check if a Thread is currently enabled + * + * Check if a Thread is currently enabled. "Enabled" includes both + * THREAD_ENABLED and THREAD_SLEEP_SET. + * @param tid The ID of the Thread to check + * @return True if the Thread is currently enabled + */ +bool Scheduler::is_enabled(thread_id_t tid) const +{ + int i = id_to_int(tid); + return (i >= enabled_len) ? false : (enabled[i] != THREAD_DISABLED); } enabled_type_t Scheduler::get_enabled(Thread *t) { - return enabled[id_to_int(t->get_id())]; + int id = id_to_int(t->get_id()); + ASSERT(id