X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fthread%2Fpthread_create.c;h=2098e752f969ec4dab516bbb5937d372351d98b4;hb=500c969f059dc1b12dc3809d270cb169abbd57d3;hp=b6c475d0ad7349c45acba92d8886f15b5ac22f45;hpb=e882756311c7b06e59fcc8e582f03852b7dcfd30;p=musl diff --git a/src/thread/pthread_create.c b/src/thread/pthread_create.c index b6c475d0..2098e752 100644 --- a/src/thread/pthread_create.c +++ b/src/thread/pthread_create.c @@ -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,11 @@ void __pthread_unwind_next(struct __ptcb *cb) } } + syscall4(__NR_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8); + + if (!a_fetch_add(&libc.threads_minus_1, -1)) + exit(0); + if (self->detached && self->map_base) __unmapself(self->map_base, self->map_size);