X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=schedule.cc;h=64cfe99d53d7c7e7242aa5b50a0506da9ee3fb59;hp=1cd5b0f1a9f3db7410965a8afad7e67f27a360d3;hb=65a79092518f7818c93238caa9ebfdab3f36cda8;hpb=79f51bf7df7ed2c8095b0c2d7f730db6ccb9394a diff --git a/schedule.cc b/schedule.cc index 1cd5b0f1..64cfe99d 100644 --- a/schedule.cc +++ b/schedule.cc @@ -29,22 +29,51 @@ 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 +bool Scheduler::is_enabled(const 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) { +/** + * @brief Check if a Thread is currently in the sleep set + * @param t The Thread to check + * @return True if the Thread is currently enabled + */ +bool Scheduler::is_sleep_set(const Thread *t) const +{ + return get_enabled(t) == THREAD_SLEEP_SET; +} + +enabled_type_t Scheduler::get_enabled(const Thread *t) const +{ int id = id_to_int(t->get_id()); - ASSERT(id