diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-23 09:46:15 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-23 09:51:19 +0200 |
commit | 2a23e899e255f9ce2b4024d4ec029ce57af518bd (patch) | |
tree | 67a857a38112bc5e05b9a6577ccfebe0857b5ded /nptl/Makefile | |
parent | 9b7ab14e112476c96e7b20fb23e6838b7012dfda (diff) | |
download | glibc-2a23e899e255f9ce2b4024d4ec029ce57af518bd.zip glibc-2a23e899e255f9ce2b4024d4ec029ce57af518bd.tar.gz glibc-2a23e899e255f9ce2b4024d4ec029ce57af518bd.tar.bz2 |
nptl: Move pthread_mutexattr_gettype into libc
And pthread_mutexattr_getkind_np as a compatibility symbol.
(There is no declaration in <pthread.h>, so there is no need
to add an alias or a deprecation warning there.)
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 196c03b..a7c2c06 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -108,6 +108,7 @@ routines = \ pthread_mutexattr_getprotocol \ pthread_mutexattr_getpshared \ pthread_mutexattr_getrobust \ + pthread_mutexattr_gettype \ pthread_once \ pthread_rwlock_rdlock \ pthread_rwlock_unlock \ @@ -167,7 +168,6 @@ libpthread-routines = \ pthread_getname \ pthread_join \ pthread_join_common \ - pthread_mutexattr_gettype \ pthread_mutexattr_init \ pthread_mutexattr_setprioceiling \ pthread_mutexattr_setprotocol \ |