make pthread_exit run dtors for last thread, wait to decrement thread count

This commit is contained in:
Rich Felker 2011-02-19 10:38:57 -05:00
parent 69ecbd0f31
commit fb11b6b85e
1 changed files with 3 additions and 3 deletions

View File

@ -10,9 +10,6 @@ void __pthread_unwind_next(struct __ptcb *cb)
self = pthread_self();
if (self->cancel) self->result = PTHREAD_CANCELLED;
if (!a_fetch_add(&libc.threads_minus_1, -1))
exit(0);
LOCK(&self->exitlock);
not_finished = self->tsd_used;
@ -28,6 +25,9 @@ void __pthread_unwind_next(struct __ptcb *cb)
}
}
if (!a_fetch_add(&libc.threads_minus_1, -1))
exit(0);
if (self->detached && self->map_base)
__unmapself(self->map_base, self->map_size);