aboutsummaryrefslogtreecommitdiff
path: root/nptl/futex-internal.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/futex-internal.c')
-rw-r--r--nptl/futex-internal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/futex-internal.c b/nptl/futex-internal.c
index 7ec228e..6b8ac23 100644
--- a/nptl/futex-internal.c
+++ b/nptl/futex-internal.c
@@ -87,7 +87,7 @@ __futex_abstimed_wait_common (unsigned int* futex_word,
err = __futex_abstimed_wait_common64 (futex_word, expected, op, abstime,
private, cancel);
#else
- bool need_time64 = abstime != NULL && !in_time_t_range (abstime->tv_sec);
+ bool need_time64 = abstime != NULL && !in_int32_t_range (abstime->tv_sec);
if (need_time64)
{
err = __futex_abstimed_wait_common64 (futex_word, expected, op, abstime,
@@ -162,7 +162,7 @@ __futex_lock_pi64 (int *futex_word, clockid_t clockid,
# ifdef __ASSUME_TIME64_SYSCALLS
err = INTERNAL_SYSCALL_CALL (futex_time64, futex_word, op_pi, 0, abstime);
# else
- bool need_time64 = abstime != NULL && !in_time_t_range (abstime->tv_sec);
+ bool need_time64 = abstime != NULL && !in_int32_t_range (abstime->tv_sec);
if (need_time64)
err = INTERNAL_SYSCALL_CALL (futex_time64, futex_word, op_pi, 0, abstime);
else