提交 fb11b6b8 编写于 作者: R Rich Felker

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

上级 69ecbd0f
...@@ -10,9 +10,6 @@ void __pthread_unwind_next(struct __ptcb *cb) ...@@ -10,9 +10,6 @@ void __pthread_unwind_next(struct __ptcb *cb)
self = pthread_self(); self = pthread_self();
if (self->cancel) self->result = PTHREAD_CANCELLED; if (self->cancel) self->result = PTHREAD_CANCELLED;
if (!a_fetch_add(&libc.threads_minus_1, -1))
exit(0);
LOCK(&self->exitlock); LOCK(&self->exitlock);
not_finished = self->tsd_used; not_finished = self->tsd_used;
...@@ -28,6 +25,9 @@ void __pthread_unwind_next(struct __ptcb *cb) ...@@ -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) if (self->detached && self->map_base)
__unmapself(self->map_base, self->map_size); __unmapself(self->map_base, self->map_size);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册