error
[c11tester.git] / threads.cc
index a9395926816f38bc4872019a3047357574c1e2b9..836bf2c72a7056923c4d3c09865076bb5fe9caef 100644 (file)
@@ -119,10 +119,13 @@ void Thread::complete()
  * @param a The parameter to pass to this function.
  */
 Thread::Thread(thrd_t *t, void (*func)(void *), void *a) :
+       creation(NULL),
+       pending(NULL),
        start_routine(func),
        arg(a),
        user_thread(t),
        state(THREAD_CREATED),
+       wait_list(),
        last_action_val(VALUE_NONE)
 {
        int ret;