diff options
| author | gfleury <gfleury@disroot.org> | 2025-02-16 16:54:28 +0200 |
|---|---|---|
| committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-02-16 22:59:25 +0100 |
| commit | 4b25413df5127b7ff7fb3903bf8acb8a64743db4 (patch) | |
| tree | c53dffdfe81967695a225ee95ecb327b34a44d6e /htl | |
| parent | cd2d31ed58542adc0869ca17c88a45f41117db8b (diff) | |
| download | glibc-4b25413df5127b7ff7fb3903bf8acb8a64743db4.tar.xz glibc-4b25413df5127b7ff7fb3903bf8acb8a64743db4.zip | |
htl: move pthread_rwlockattr_getpshared, pthread_rwlockattr_setpshared into libc.
Signed-off-by: gfleury <gfleury@disroot.org>
Message-ID: <20250216145434.7089-5-gfleury@disroot.org>
Diffstat (limited to 'htl')
| -rw-r--r-- | htl/Makefile | 4 | ||||
| -rw-r--r-- | htl/Versions | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/htl/Makefile b/htl/Makefile index 84b85f1a9a..651af8d82a 100644 --- a/htl/Makefile +++ b/htl/Makefile @@ -45,8 +45,6 @@ libpthread-routines := \ pt-testcancel \ pt-cancel \ pt-mutex-transfer-np \ - pt-rwlockattr-getpshared \ - pt-rwlockattr-setpshared \ pt-rwlock-init \ pt-rwlock-destroy \ pt-rwlock-rdlock \ @@ -200,7 +198,9 @@ routines := \ pt-pthread_self \ pt-rwlock-attr \ pt-rwlockattr-destroy \ + pt-rwlockattr-getpshared \ pt-rwlockattr-init \ + pt-rwlockattr-setpshared \ pt-self pt-equal \ pt-setcancelstate \ pt-setcanceltype \ diff --git a/htl/Versions b/htl/Versions index f6a1566a20..1d666bcb3c 100644 --- a/htl/Versions +++ b/htl/Versions @@ -64,7 +64,9 @@ libc { pthread_mutexattr_setpshared; pthread_mutexattr_settype; pthread_rwlockattr_destroy; + pthread_rwlockattr_getpshared; pthread_rwlockattr_init; + pthread_rwlockattr_setpshared; pthread_setcancelstate; pthread_setcanceltype; pthread_sigmask; @@ -145,7 +147,9 @@ libc { pthread_mutex_setprioceiling; pthread_mutex_trylock; pthread_rwlockattr_destroy; + pthread_rwlockattr_getpshared; pthread_rwlockattr_init; + pthread_rwlockattr_setpshared; } GLIBC_PRIVATE { @@ -246,9 +250,6 @@ libpthread { pthread_rwlock_tryrdlock; pthread_rwlock_trywrlock; pthread_rwlock_unlock; pthread_rwlock_wrlock; - pthread_rwlockattr_getpshared; - pthread_rwlockattr_setpshared; - pthread_setconcurrency; pthread_setschedprio; pthread_setspecific; |
