X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fthread%2Fpthread_self.c;h=51f12bb3227951668c7e75273e9d868a58ca63f2;hb=b935147761d1770bb115f09f8c28ddb4d36e1236;hp=cc2ddfb72ff4cdb8e4bd5046c7326204f8dacd0e;hpb=28af39fe427ffec8b836f4f30450ffc30b03e5c4;p=musl 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);