diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-23 09:46:57 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-23 09:51:56 +0200 |
commit | 506385d30ec67279b21929f117b292bbbe8f5e7b (patch) | |
tree | 603077d778d62228809989072ae011869b5e9dd4 /nptl/Versions | |
parent | 2a23e899e255f9ce2b4024d4ec029ce57af518bd (diff) | |
download | glibc-506385d30ec67279b21929f117b292bbbe8f5e7b.tar.gz glibc-506385d30ec67279b21929f117b292bbbe8f5e7b.tar.xz glibc-506385d30ec67279b21929f117b292bbbe8f5e7b.zip |
nptl: Move pthread_mutexattr_init, __pthread_mutexattr_init into libc
__pthread_mutexattr_init cannot be be made a compat symbol because it is used in mtx_init, which is still in libpthread. The symbols were moved using scripts/move-symbol-to-libc.py.
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 a04fb94068..1639efba7c 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -8,6 +8,7 @@ libc { __pthread_mutex_trylock; __pthread_mutex_unlock; __pthread_mutexattr_destroy; + __pthread_mutexattr_init; __pthread_once; __pthread_setspecific; _pthread_cleanup_pop; @@ -50,6 +51,7 @@ libc { pthread_mutex_unlock; pthread_mutexattr_destroy; pthread_mutexattr_getkind_np; + pthread_mutexattr_init; pthread_once; pthread_self; pthread_setcancelstate; @@ -132,6 +134,7 @@ libc { __pthread_mutex_init; __pthread_mutex_lock; __pthread_mutex_unlock; + __pthread_mutexattr_init; __pthread_once; __pthread_setspecific; pthread_cond_clockwait; @@ -148,6 +151,7 @@ libc { pthread_mutexattr_getprotocol; pthread_mutexattr_getrobust; pthread_mutexattr_gettype; + pthread_mutexattr_init; pthread_once; pthread_rwlock_rdlock; pthread_rwlock_unlock; @@ -211,7 +215,6 @@ libpthread { _IO_funlockfile; __errno_location; __h_errno_location; - __pthread_mutexattr_init; __pthread_mutexattr_settype; _exit; flockfile; @@ -221,7 +224,6 @@ libpthread { pthread_create; pthread_detach; pthread_join; - pthread_mutexattr_init; pthread_mutexattr_setkind_np; pthread_sigmask; pthread_testcancel; |