X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=threads.cc;h=762bbff34c2463a3dbaf6179e3af3e1eb977ca8b;hb=c4c6c997cb5d2d651d4dfa76390a42592432d266;hp=a8f282a8b32efdb96d1d248570fc8b7574af92f7;hpb=3e520de48b5be0b0d4fa4a5f033e207b17c4496d;p=model-checker.git diff --git a/threads.cc b/threads.cc index a8f282a..762bbff 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" @@ -150,7 +151,8 @@ 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), @@ -170,7 +172,6 @@ Thread::Thread(thrd_t *t, void (*func)(void *), void *a) : id = model->get_next_id(); user_thread->priv = this; - parent = thread_current(); } /** Destructor */