X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fthread%2Fpthread_create.c;h=d2344f156e54aa2c0f206e0650d259b4e7409b02;hp=7cd57d8e8dbaa390d8967ff620cf4a4a51f64f7a;hb=4ae5e811f8d291a0df1418e1aae583161c142952;hpb=6c16d3e98ab2e466bb12ded12dfad1f8f272b1f8 diff --git a/src/thread/pthread_create.c b/src/thread/pthread_create.c index 7cd57d8e..d2344f15 100644 --- a/src/thread/pthread_create.c +++ b/src/thread/pthread_create.c @@ -13,7 +13,6 @@ void __pthread_unwind_next(struct __ptcb *cb) if (cb->__next) longjmp((void *)cb->__next->__jb, 1); self = pthread_self(); - if (self->cancel) self->result = PTHREAD_CANCELED; LOCK(&self->exitlock); @@ -226,6 +225,7 @@ int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(vo new->detached = attr->_a_detach; new->attr = *attr; new->unblock_cancel = self->cancel; + new->result = PTHREAD_CANCELED; memcpy(new->tlsdesc, self->tlsdesc, sizeof new->tlsdesc); new->tlsdesc[1] = (uintptr_t)new; stack = (void *)((uintptr_t)new-1 & ~(uintptr_t)15);