public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 1/2] y2038: hurd: Provide __clock_gettime64 function
@ 2020-01-16 13:35 Lukasz Majewski
  2020-01-16 13:28 ` [PATCH 2/2] y2038: linux: Provide __timespec_get64 implementation Lukasz Majewski
  2020-01-16 22:17 ` [PATCH 1/2] y2038: hurd: Provide __clock_gettime64 function Samuel Thibault
  0 siblings, 2 replies; 3+ messages in thread
From: Lukasz Majewski @ 2020-01-16 13:35 UTC (permalink / raw)
  To: Joseph Myers, Paul Eggert, Adhemerval Zanella, Andreas Schwab,
	Samuel Thibault
  Cc: Alistair Francis, Alistair Francis, GNU C Library,
	Siddhesh Poyarekar, Florian Weimer, Florian Weimer,
	Zack Weinberg, Carlos O'Donell, Lukasz Majewski

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.
---
 sysdeps/mach/clock_gettime.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/sysdeps/mach/clock_gettime.c b/sysdeps/mach/clock_gettime.c
index ac3547df3c..fbd80536d5 100644
--- a/sysdeps/mach/clock_gettime.c
+++ b/sysdeps/mach/clock_gettime.c
@@ -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)
-- 
2.20.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-01-16 17:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-16 13:35 [PATCH 1/2] y2038: hurd: Provide __clock_gettime64 function Lukasz Majewski
2020-01-16 13:28 ` [PATCH 2/2] y2038: linux: Provide __timespec_get64 implementation Lukasz Majewski
2020-01-16 22:17 ` [PATCH 1/2] y2038: hurd: Provide __clock_gettime64 function Samuel Thibault

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).