X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=threads.cc;h=cbedbb18bae1d73db1c46a531b4141886875b6be;hb=dc9c89654982c64264dfee7b1ea23e9a5e88e18e;hp=d170b7ada3554da89213ab6219fff15c11ed0019;hpb=09b2cb3cabe0d96f62383a8fdd040e7605a1ffc6;p=model-checker.git diff --git a/threads.cc b/threads.cc index d170b7a..cbedbb1 100644 --- a/threads.cc +++ b/threads.cc @@ -7,6 +7,7 @@ #include #include "common.h" #include "threads-model.h" +#include "action.h" /* global "model" object */ #include "model.h" @@ -23,7 +24,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); @@ -84,6 +91,7 @@ int Thread::create_context() */ int Thread::swap(Thread *t, ucontext_t *ctxt) { + t->set_state(THREAD_READY); return swapcontext(&t->context, ctxt); } @@ -97,6 +105,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); } @@ -142,7 +151,7 @@ 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_thrd) : creation(NULL), pending(NULL), start_routine(func), @@ -161,8 +170,8 @@ Thread::Thread(thrd_t *t, void (*func)(void *), void *a) : model_print("Error in create_context\n"); id = model->get_next_id(); - *user_thread = id; - parent = thread_current(); + user_thread->priv = this; + parent = parent_thrd ? parent_thrd : thread_current(); } /** Destructor */