diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-11 11:08:00 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-11 11:24:39 +0200 |
commit | df65f897e9501aa5b64a5cbcb101301715f2ec2f (patch) | |
tree | ed8e6ba638dde4a447fb1a30107a62f8287dcb4f /nptl/Versions | |
parent | 8fbb33b3f74560ea3c74d289bdf59cffce52b463 (diff) | |
download | glibc-df65f897e9501aa5b64a5cbcb101301715f2ec2f.zip glibc-df65f897e9501aa5b64a5cbcb101301715f2ec2f.tar.gz glibc-df65f897e9501aa5b64a5cbcb101301715f2ec2f.tar.bz2 |
nptl: Move pthread_detach, thrd_detach into libc
The symbols were moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/Versions')
-rw-r--r-- | nptl/Versions | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/nptl/Versions b/nptl/Versions index da610a4..46ae34a 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -37,6 +37,7 @@ libc { pthread_cond_wait; pthread_condattr_destroy; pthread_condattr_init; + pthread_detach; pthread_equal; pthread_exit; pthread_getschedparam; @@ -186,6 +187,7 @@ libc { mtx_trylock; mtx_unlock; thrd_current; + thrd_detach; thrd_equal; thrd_exit; thrd_sleep; @@ -240,6 +242,7 @@ libc { pthread_condattr_getpshared; pthread_condattr_setclock; pthread_condattr_setpshared; + pthread_detach; pthread_getspecific; pthread_key_create; pthread_key_delete; @@ -295,6 +298,7 @@ libc { sem_trywait; sem_unlink; sem_wait; + thrd_detach; thrd_exit; tss_create; tss_delete; @@ -365,7 +369,6 @@ libpthread { funlockfile; pthread_cancel; pthread_create; - pthread_detach; pthread_join; pthread_sigmask; } @@ -449,7 +452,6 @@ libpthread { # C11 thread symbols. GLIBC_2.28 { thrd_create; - thrd_detach; thrd_join; } |