summaryrefslogtreecommitdiffstats
path: root/lib/libthr/thread/thr_join.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libthr/thread/thr_join.c')
-rw-r--r--lib/libthr/thread/thr_join.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libthr/thread/thr_join.c b/lib/libthr/thread/thr_join.c
index 30acc93..b96eedc 100644
--- a/lib/libthr/thread/thr_join.c
+++ b/lib/libthr/thread/thr_join.c
@@ -160,12 +160,12 @@ _pthread_join(pthread_t pthread, void **thread_return)
*thread_return = pthread->ret;
}
- /* Make the thread collectable by the garbage collector. */
+ /* Free all remaining memory allocated to the thread. */
pthread->attr.flags |= PTHREAD_DETACHED;
UMTX_UNLOCK(&pthread->lock);
+ TAILQ_REMOVE(&_dead_list, pthread, dle);
+ deadlist_free_onethread(pthread);
THREAD_LIST_UNLOCK;
- if (pthread_cond_signal(&_gc_cond) != 0)
- PANIC("Cannot signal gc cond");
DEAD_LIST_UNLOCK;
}
OpenPOWER on IntegriCloud