aboutsummaryrefslogtreecommitdiff
path: root/include/time.h
diff options
context:
space:
mode:
authorLukasz Majewski <lukma@denx.de>2019-12-06 10:41:50 +0100
committerLukasz Majewski <lukma@denx.de>2020-02-02 11:23:23 +0100
commit0f6e6b97647891ae569018f9d6923dc5eee694c9 (patch)
tree24c2186c5fd7dc7e18c61e16b5f9a916972a3634 /include/time.h
parentbbfc0f0f8e30680437d1c5b90563018bcd403881 (diff)
downloadglibc-0f6e6b97647891ae569018f9d6923dc5eee694c9.tar
glibc-0f6e6b97647891ae569018f9d6923dc5eee694c9.tar.gz
glibc-0f6e6b97647891ae569018f9d6923dc5eee694c9.tar.bz2
glibc-0f6e6b97647891ae569018f9d6923dc5eee694c9.zip
y2038: linux: Provide __timerfd_gettime64 implementation
This patch replaces auto generated wrapper (as described in sysdeps/unix/sysv/linux/syscalls.list) for timerfd_gettime with one which adds extra support for reading 64 bit time values on machines with __TIMESIZE != 64. There is no functional change for architectures already supporting 64 bit time ABI. This patch is conceptually identical to timer_gettime conversion already done in sysdeps/unix/sysv/linux/timer_gettime.c. Please refer to corresponding commit message for detailed description of introduced functions and the testing procedure. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org> --- Changes for v4: - Update date from 2019 to 2020 Changes for v3: - Add missing libc_hidden_def() Changes for v2: - Remove "Contributed by" from the file header - Remove early check for (fd < 0) in __timerfd_gettime64 as the fd correctness check is already done in Linux kernel - Add single descriptive comment line to provide concise explanation of the code
Diffstat (limited to 'include/time.h')
-rw-r--r--include/time.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/time.h b/include/time.h
index e5e8246eac..eb5082b4d7 100644
--- a/include/time.h
+++ b/include/time.h
@@ -181,9 +181,12 @@ libc_hidden_proto (__futimens64);
#if __TIMESIZE == 64
# define __timer_gettime64 __timer_gettime
+# define __timerfd_gettime64 __timerfd_gettime
#else
extern int __timer_gettime64 (timer_t timerid, struct __itimerspec64 *value);
+extern int __timerfd_gettime64 (int fd, struct __itimerspec64 *value);
libc_hidden_proto (__timer_gettime64);
+libc_hidden_proto (__timerfd_gettime64);
#endif
#if __TIMESIZE == 64