threads: remove wait_list
[cdsspec-compiler.git] / threads.cc
index e4b46561a0e7be13016661a541f09146b9726f28..5bfd028746aa99f314263d90d4f7234df629b63b 100644 (file)
@@ -139,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)
 {
@@ -160,7 +159,6 @@ Thread::Thread(thrd_t *t, void (*func)(void *), void *a, Thread *parent) :
        arg(a),
        user_thread(t),
        state(THREAD_CREATED),
-       wait_list(),
        last_action_val(VALUE_NONE),
        model_thread(false)
 {