diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-03 08:12:11 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-03 08:15:04 +0200 |
commit | 08a31ef923c51dc5ff2ef815730de0ba4d591ae3 (patch) | |
tree | b86649471801e4039a1d6c79e6c82b1aaf53bdee /sysdeps/unix/sysv/linux/cnd_timedwait.c | |
parent | eef936eb458e5dfccceee6d3c4220f9a1c62832b (diff) | |
download | glibc-08a31ef923c51dc5ff2ef815730de0ba4d591ae3.tar.gz glibc-08a31ef923c51dc5ff2ef815730de0ba4d591ae3.tar.xz glibc-08a31ef923c51dc5ff2ef815730de0ba4d591ae3.zip |
nptl: Move cnd_timedwait into libc
The symbol was moved using scripts/move-symbol-to-libc.py. The __pthread_cond_timedwait@@GLIBC_PRIVATE symbol is no longer neded, so remove that as well. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/cnd_timedwait.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/cnd_timedwait.c | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/sysdeps/unix/sysv/linux/cnd_timedwait.c b/sysdeps/unix/sysv/linux/cnd_timedwait.c index 1bd0e70f7d..0415c683f9 100644 --- a/sysdeps/unix/sysv/linux/cnd_timedwait.c +++ b/sysdeps/unix/sysv/linux/cnd_timedwait.c @@ -17,11 +17,12 @@ <https://www.gnu.org/licenses/>. */ #include <time.h> +#include <shlib-compat.h> #include "thrd_priv.h" int -__cnd_timedwait64 (cnd_t *restrict cond, mtx_t *restrict mutex, - const struct __timespec64 *restrict time_point) +___cnd_timedwait64 (cnd_t *restrict cond, mtx_t *restrict mutex, + const struct __timespec64 *restrict time_point) { int err_code = __pthread_cond_timedwait64 ((pthread_cond_t *) cond, (pthread_mutex_t *) mutex, @@ -29,16 +30,22 @@ __cnd_timedwait64 (cnd_t *restrict cond, mtx_t *restrict mutex, return thrd_err_map (err_code); } -#if __TIMESIZE != 64 -libpthread_hidden_def (__cnd_timedwait64) +#if __TIMESIZE == 64 +strong_alias (___cnd_timedwait64, ___cnd_timedwait) +#else +libc_hidden_ver (___cnd_timedwait64, __cnd_timedwait64) int -__cnd_timedwait (cnd_t *restrict cond, mtx_t *restrict mutex, - const struct timespec *restrict time_point) +___cnd_timedwait (cnd_t *restrict cond, mtx_t *restrict mutex, + const struct timespec *restrict time_point) { struct __timespec64 ts64 = valid_timespec_to_timespec64 (*time_point); return __cnd_timedwait64(cond, mutex, &ts64); } +#endif /* __TIMESIZE == 64 */ +versioned_symbol (libc, ___cnd_timedwait, cnd_timedwait, GLIBC_2_34); + +#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_28, GLIBC_2_34) +compat_symbol (libpthread, ___cnd_timedwait, cnd_timedwait, GLIBC_2_28); #endif -weak_alias (__cnd_timedwait, cnd_timedwait) |