diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-11-23 10:16:33 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-11-25 10:43:18 -0300 |
commit | 2a45be88ed4753a9756d840b3182a87f2ae1200b (patch) | |
tree | da0345ecc716028292365f12dd37e22b5f2aa89d /nptl | |
parent | 878fe624d44b8f6489b2d0de9bfdc09290a719a7 (diff) | |
download | glibc-2a45be88ed4753a9756d840b3182a87f2ae1200b.tar.gz glibc-2a45be88ed4753a9756d840b3182a87f2ae1200b.tar.xz glibc-2a45be88ed4753a9756d840b3182a87f2ae1200b.zip |
nptl: Replace lll_futex_supported_clockid with futex-internal.h
The idea is to make NPTL implementation to use on the functions provided by futex-internal.h. Checked on x86_64-linux-gnu and i686-linux-gnu. Reviewed-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/pthread_mutex_timedlock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_mutex_timedlock.c b/nptl/pthread_mutex_timedlock.c index 343acf6107..b42862193a 100644 --- a/nptl/pthread_mutex_timedlock.c +++ b/nptl/pthread_mutex_timedlock.c @@ -600,7 +600,7 @@ __pthread_mutex_clocklock64 (pthread_mutex_t *mutex, clockid_t clockid, const struct __timespec64 *abstime) { - if (__glibc_unlikely (!lll_futex_supported_clockid (clockid))) + if (__glibc_unlikely (!futex_abstimed_supported_clockid (clockid))) return EINVAL; LIBC_PROBE (mutex_clocklock_entry, 3, mutex, clockid, abstime); |