replace all remaining internal uses of pthread_self with __pthread_self
[musl] / src / thread / cancel_impl.c
index 525d290..41cf2b8 100644 (file)
@@ -58,7 +58,7 @@ static void cancel_handler(int sig, siginfo_t *si, void *ctx)
 void __testcancel()
 {
        if (!libc.has_thread_pointer) return;
-       pthread_t self = pthread_self();
+       pthread_t self = __pthread_self();
        if (self->cancel && !self->canceldisable)
                __cancel();
 }