diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-21 22:35:00 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-21 22:35:00 +0200 |
commit | f47f1d91af985a9028fb399da21eab460d887a15 (patch) | |
tree | 717700afaec7558cfcd4b51de8aaddbd564c632e /sysdeps/pthread/Makefile | |
parent | 7862ff8e699ca8f605b832c6e529f5b10e678edd (diff) | |
download | glibc-f47f1d91af985a9028fb399da21eab460d887a15.tar.gz glibc-f47f1d91af985a9028fb399da21eab460d887a15.tar.xz glibc-f47f1d91af985a9028fb399da21eab460d887a15.zip |
nptl: Move pthread_create, thrd_create into libc
The symbols were moved using scripts/move-symbol-to-libc.py. The libpthread placeholder symbols need some changes because some symbol versions have gone away completely. But __errno_location@@GLIBC_2.0 still exists, so the GLIBC_2.0 version is still there. The internal __pthread_create symbol now points to the correct function, so the sysdeps/nptl/thrd_create.c override is no longer necessary. There was an issue how the hidden alias of pthread_getattr_default_np was defined, so this commit cleans up that aspects and removes the GLIBC_PRIVATE export altogether. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/pthread/Makefile')
-rw-r--r-- | sysdeps/pthread/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/pthread/Makefile b/sysdeps/pthread/Makefile index b15d085f51..bca642f438 100644 --- a/sysdeps/pthread/Makefile +++ b/sysdeps/pthread/Makefile @@ -31,8 +31,6 @@ headers += threads.h routines += thrd_current thrd_equal thrd_sleep thrd_yield -libpthread-routines += thrd_create - $(libpthread-routines-var) += \ call_once \ cnd_broadcast \ @@ -47,6 +45,7 @@ $(libpthread-routines-var) += \ mtx_timedlock \ mtx_trylock \ mtx_unlock \ + thrd_create \ thrd_detach \ thrd_exit \ thrd_join \ |