X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fthread%2Fpthread_self.c;fp=src%2Fthread%2Fpthread_self.c;h=51f12bb3227951668c7e75273e9d868a58ca63f2;hp=cc2ddfb72ff4cdb8e4bd5046c7326204f8dacd0e;hb=dac084a4c5f52bb3b121675320c47d3c3614174e;hpb=834255a3ffb5be208024e66b1f794d9f4201413c diff --git a/src/thread/pthread_self.c b/src/thread/pthread_self.c index cc2ddfb7..51f12bb3 100644 --- a/src/thread/pthread_self.c +++ b/src/thread/pthread_self.c @@ -19,7 +19,7 @@ static int init_main_thread() return 0; } -pthread_t pthread_self() +pthread_t __pthread_self_def() { static int init, failed; if (!init) { @@ -31,4 +31,5 @@ pthread_t pthread_self() return __pthread_self(); } -weak_alias(pthread_self, __pthread_self_init); +weak_alias(__pthread_self_def, pthread_self); +weak_alias(__pthread_self_def, __pthread_self_init);