diff options
| author | gfleury <gfleury@disroot.org> | 2025-02-16 16:54:33 +0200 |
|---|---|---|
| committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-02-16 23:43:03 +0100 |
| commit | 6f6732c1c48b288a4ca7effb86831e7bc06a2fc8 (patch) | |
| tree | 563d475669efed5d5e35e44ea1e3c2bf7d56f5c7 /htl | |
| parent | d3ef1b56aa81d7f86ebf04c849258f0cf85c4217 (diff) | |
| download | glibc-6f6732c1c48b288a4ca7effb86831e7bc06a2fc8.tar.xz glibc-6f6732c1c48b288a4ca7effb86831e7bc06a2fc8.zip | |
htl: move pthread_rwlock_init into libc.
Signed-off-by: gfleury <gfleury@disroot.org>
Message-ID: <20250216145434.7089-10-gfleury@disroot.org>
Diffstat (limited to 'htl')
| -rw-r--r-- | htl/Makefile | 2 | ||||
| -rw-r--r-- | htl/Versions | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/htl/Makefile b/htl/Makefile index 78d997d4ab..310097914f 100644 --- a/htl/Makefile +++ b/htl/Makefile @@ -45,7 +45,6 @@ libpthread-routines := \ pt-testcancel \ pt-cancel \ pt-mutex-transfer-np \ - pt-rwlock-init \ pt-hurd-cond-wait \ pt-hurd-cond-timedwait \ pt-stack-alloc \ @@ -190,6 +189,7 @@ routines := \ pt-pthread_self \ pt-rwlock-attr \ pt-rwlock-destroy \ + pt-rwlock-init \ pt-rwlock-rdlock \ pt-rwlock-timedrdlock \ pt-rwlock-timedwrlock \ diff --git a/htl/Versions b/htl/Versions index f636e6ede5..4fe2a45295 100644 --- a/htl/Versions +++ b/htl/Versions @@ -64,6 +64,7 @@ libc { pthread_mutexattr_setpshared; pthread_mutexattr_settype; pthread_rwlock_destroy; + pthread_rwlock_init; pthread_rwlock_rdlock; pthread_rwlock_timedrdlock; pthread_rwlock_timedwrlock; @@ -159,6 +160,7 @@ libc { pthread_mutex_trylock; pthread_rwlock_clockrdlock; pthread_rwlock_clockwrlock; + pthread_rwlock_init; pthread_rwlock_rdlock; pthread_rwlock_timedrdlock; pthread_rwlock_timedwrlock; @@ -265,8 +267,6 @@ libpthread { pthread_once; - pthread_rwlock_init; - pthread_setconcurrency; pthread_setschedprio; pthread_setspecific; @@ -320,6 +320,5 @@ libpthread { __pthread_getattr_np; __pthread_enable_asynccancel; __pthread_disable_asynccancel; - _pthread_rwlock_init; } } |
