X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=threads.cc;h=ae2905a9819a7d4e0159fbbf6d4f439850da1f40;hp=9de580297871687e4529f2a67512aa6087a9cc1b;hb=5178739a27add5e59a1213c9ac90e73397c1a23d;hpb=1cdcdc24156572a63fd8261a7a3dd2f04ca6648c diff --git a/threads.cc b/threads.cc index 9de58029..ae2905a9 100644 --- a/threads.cc +++ b/threads.cc @@ -5,8 +5,10 @@ #include #include +#include #include "common.h" #include "threads-model.h" +#include "action.h" /* global "model" object */ #include "model.h" @@ -23,7 +25,13 @@ static void stack_free(void *stack) snapshot_free(stack); } -/** Return the currently executing thread. */ +/** + * @brief Get the current Thread + * + * Must be called from a user context + * + * @return The currently executing thread + */ Thread * thread_current(void) { ASSERT(model); @@ -85,7 +93,7 @@ int Thread::create_context() int Thread::swap(Thread *t, ucontext_t *ctxt) { t->set_state(THREAD_READY); - return swapcontext(&t->context, ctxt); + return model_swapcontext(&t->context, ctxt); } /** @@ -99,7 +107,7 @@ int Thread::swap(Thread *t, ucontext_t *ctxt) int Thread::swap(ucontext_t *ctxt, Thread *t) { t->set_state(THREAD_RUNNING); - return swapcontext(ctxt, &t->context); + return model_swapcontext(ctxt, &t->context); } @@ -131,7 +139,6 @@ Thread::Thread(thread_id_t tid) : user_thread(NULL), id(tid), state(THREAD_READY), /* Thread is always ready? */ - wait_list(), last_action_val(0), model_thread(true) { @@ -144,14 +151,14 @@ Thread::Thread(thread_id_t tid) : * @param func The function that the thread will call. * @param a The parameter to pass to this function. */ -Thread::Thread(thrd_t *t, void (*func)(void *), void *a) : +Thread::Thread(thrd_t *t, void (*func)(void *), void *a, Thread *parent) : + parent(parent), creation(NULL), pending(NULL), start_routine(func), arg(a), user_thread(t), state(THREAD_CREATED), - wait_list(), last_action_val(VALUE_NONE), model_thread(false) { @@ -164,7 +171,6 @@ Thread::Thread(thrd_t *t, void (*func)(void *), void *a) : id = model->get_next_id(); user_thread->priv = this; - parent = thread_current(); } /** Destructor */ @@ -172,7 +178,6 @@ Thread::~Thread() { if (!is_complete()) complete(); - model->remove_thread(this); } /** @return The thread_id_t corresponding to this Thread object. */ @@ -190,3 +195,35 @@ void Thread::set_state(thread_state s) ASSERT(s == THREAD_COMPLETED || state != THREAD_COMPLETED); state = s; } + +/** + * Get the Thread that this Thread is immediately waiting on + * @return The thread we are waiting on, if any; otherwise NULL + */ +Thread * Thread::waiting_on() const +{ + if (!pending) + return NULL; + + if (pending->get_type() == THREAD_JOIN) + return pending->get_thread_operand(); + else if (pending->is_lock()) + return (Thread *)pending->get_mutex()->get_state()->locked; + return NULL; +} + +/** + * Check if this Thread is waiting (blocking) on a given Thread, directly or + * indirectly (via a chain of waiting threads) + * + * @param t The Thread on which we may be waiting + * @return True if we are waiting on Thread t; false otherwise + */ +bool Thread::is_waiting_on(const Thread *t) const +{ + Thread *wait; + for (wait = waiting_on(); wait != NULL; wait = wait->waiting_on()) + if (wait == t) + return true; + return false; +}