diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-02-10 23:45:23 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-02-10 23:45:23 +0000 |
commit | fba7fc5a21f5c56e4878228d2311d040e5b84653 (patch) | |
tree | b89150c1dfec0205b7d4996d776d37fb177e2ec4 /htl/pt-create.c | |
parent | hurd: Add __pthread_spin_wait and use it (diff) | |
download | glibc-fba7fc5a21f5c56e4878228d2311d040e5b84653.tar.gz glibc-fba7fc5a21f5c56e4878228d2311d040e5b84653.tar.bz2 glibc-fba7fc5a21f5c56e4878228d2311d040e5b84653.zip |
htl C11 threads: Avoid pthread_ symbols visibility in static library
Diffstat (limited to 'htl/pt-create.c')
-rw-r--r-- | htl/pt-create.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htl/pt-create.c b/htl/pt-create.c index 090d394f53..f501a12017 100644 --- a/htl/pt-create.c +++ b/htl/pt-create.c @@ -89,7 +89,7 @@ __pthread_create (pthread_t * thread, const pthread_attr_t * attr, return err; } -strong_alias (__pthread_create, pthread_create) +weak_alias (__pthread_create, pthread_create) /* Internal version of pthread_create. See comment in pt-internal.h. */ |