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/Makefile | |
parent | 2a23e899e255f9ce2b4024d4ec029ce57af518bd (diff) | |
download | glibc-506385d30ec67279b21929f117b292bbbe8f5e7b.zip glibc-506385d30ec67279b21929f117b292bbbe8f5e7b.tar.gz glibc-506385d30ec67279b21929f117b292bbbe8f5e7b.tar.bz2 |
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/Makefile')
-rw-r--r-- | nptl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index a7c2c06..51a4740 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -109,6 +109,7 @@ routines = \ pthread_mutexattr_getpshared \ pthread_mutexattr_getrobust \ pthread_mutexattr_gettype \ + pthread_mutexattr_init \ pthread_once \ pthread_rwlock_rdlock \ pthread_rwlock_unlock \ @@ -168,7 +169,6 @@ libpthread-routines = \ pthread_getname \ pthread_join \ pthread_join_common \ - pthread_mutexattr_init \ pthread_mutexattr_setprioceiling \ pthread_mutexattr_setprotocol \ pthread_mutexattr_setpshared \ |