Explorar o código

pthread_exit is not supposed to affect cancellability

if the exit was caused by cancellation, __cancel has already set these
flags anyway.
Rich Felker %!s(int64=14) %!d(string=hai) anos
pai
achega
2afed79f15
Modificáronse 1 ficheiros con 0 adicións e 2 borrados
  1. 0 2
      src/thread/pthread_create.c

+ 0 - 2
src/thread/pthread_create.c

@@ -130,7 +130,5 @@ void pthread_exit(void *result)
 	struct pthread *self = pthread_self();
 	struct __ptcb cb = { .__next = self->cancelbuf };
 	self->result = result;
-	self->canceldisable = 1;
-	self->cancelasync = 0;
 	__pthread_unwind_next(&cb);
 }