about summary refs log tree commit diff
path: root/inet/deadline.c
diff options
context:
space:
mode:
authorLukasz Majewski <lukma@denx.de>2020-03-16 10:09:13 +0100
committerLukasz Majewski <lukma@denx.de>2020-05-05 18:45:14 +0200
commite008836c4afeeb81abe548b898fdf2db7d70eaff (patch)
tree62f27ff4a3283ff6d7cf8485e8884188997fb690 /inet/deadline.c
parent1959ed4b9e9f95c991abdf31b24fb8cdf98475e2 (diff)
downloadglibc-e008836c4afeeb81abe548b898fdf2db7d70eaff.tar.gz
glibc-e008836c4afeeb81abe548b898fdf2db7d70eaff.tar.xz
glibc-e008836c4afeeb81abe548b898fdf2db7d70eaff.zip
y2038: inet: Convert inet deadline to support 64 bit time
This change brings 64 bit time support to inet deadline related code for
architectures with __WORDSIZE == 32 && __TIMESIZE != 64.

It is also safe to replace struct timespec with struct __timespec64 in
deadline related structures as:

- The __deadline_to_ms () returns the number of miliseconds to deadline to
  be used with __poll (and hence it is a relative value).
- To calculate the deadline from timeval (which will be converted latter)
  the uintmax_t type is used (unsinged long long int).

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'inet/deadline.c')
-rw-r--r--inet/deadline.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/inet/deadline.c b/inet/deadline.c
index ebf9a4f52c..eac7afd1a8 100644
--- a/inet/deadline.c
+++ b/inet/deadline.c
@@ -28,8 +28,8 @@ struct deadline_current_time
 __deadline_current_time (void)
 {
   struct deadline_current_time result;
-  if (__clock_gettime (CLOCK_MONOTONIC, &result.current) != 0)
-    __clock_gettime (CLOCK_REALTIME, &result.current);
+  if (__clock_gettime64 (CLOCK_MONOTONIC, &result.current) != 0)
+    __clock_gettime64 (CLOCK_REALTIME, &result.current);
   assert (result.current.tv_sec >= 0);
   return result;
 }