]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
y2038: hurd: Provide __clock_gettime64 function
authorLukasz Majewski <lukma@denx.de>
Thu, 16 Jan 2020 13:27:27 +0000 (14:27 +0100)
committerLukasz Majewski <lukma@denx.de>
Tue, 5 May 2020 16:45:14 +0000 (18:45 +0200)
For Linux glibc ports the __TIMESIZE == 64 ensures proper aliasing for
__clock_gettime64 (to __clock_gettime).
When __TIMESIZE != 64 (like ARM32, PPC) the glibc expects separate definition
of the __clock_gettime64.

The HURD port only provides __clock_gettime, so this patch adds
__clock_gettime64 as a tiny wrapper on it.
Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
sysdeps/mach/clock_gettime.c

index ac3547df3c3a3e02b3b91619ef89241d5e473d9d..fbd80536d511cd9b55c70360ca0401a28fdd28f6 100644 (file)
@@ -49,3 +49,17 @@ versioned_symbol (libc, __clock_gettime, clock_gettime, GLIBC_2_17);
 strong_alias (__clock_gettime, __clock_gettime_2);
 compat_symbol (libc, __clock_gettime_2, clock_gettime, GLIBC_2_2);
 #endif
+
+int
+__clock_gettime64 (clockid_t clock_id, struct __timespec64 *ts64)
+{
+  struct timespec ts;
+  int ret;
+
+  ret = __clock_gettime (clock_id, &ts);
+  if (ret == 0)
+    *ts64 = valid_timespec_to_timespec64 (ts);
+
+  return ret;
+}
+libc_hidden_def (__clock_gettime64)