mirror of
https://github.com/fluencelabs/musl
synced 2025-05-04 11:32:14 +00:00
pthread_exit is not supposed to affect cancellability
if the exit was caused by cancellation, __cancel has already set these flags anyway.
This commit is contained in:
parent
1ebde9c3a2
commit
2afed79f15
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user