diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-02-25 16:57:25 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-06-15 10:42:11 -0300 |
commit | e9bc2b3b38ff8a68248cdfe91b0d28c154382ec2 (patch) | |
tree | b0c059cca9af2591762b1b186e55c7c3a7960ad8 /support/xtime.h | |
parent | 19873b18b08c97be8bf370398f6dff2b3472f52f (diff) | |
download | glibc-e9bc2b3b38ff8a68248cdfe91b0d28c154382ec2.tar.gz glibc-e9bc2b3b38ff8a68248cdfe91b0d28c154382ec2.tar.xz glibc-e9bc2b3b38ff8a68248cdfe91b0d28c154382ec2.zip |
libsupport: Add 64-bit time_t support for time functions
The patch adds redirections for xclock_gettime, xclock_settime, timespec_add, timespec_sub, test_timespec_before_impl, test_timespec_equal_or_after_impl, support_timespec_ns, support_timespec_normalize, and support_timespec_check_in_range when _TIME_BITS=64 is defined. Co-authored-by: Lukasz Majewski <lukma@denx.de> Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'support/xtime.h')
-rw-r--r-- | support/xtime.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/support/xtime.h b/support/xtime.h index b4ac3b59e2..25a069d447 100644 --- a/support/xtime.h +++ b/support/xtime.h @@ -30,8 +30,15 @@ __BEGIN_DECLS /* The following functions call the corresponding libc functions and terminate the process on error. */ +#ifndef __USE_TIME_BITS64 void xclock_gettime (clockid_t clock, struct timespec *ts); void xclock_settime (clockid_t clock, const struct timespec *ts); +#else +void __REDIRECT (xclock_gettime, (clockid_t clock, struct timespec *ts), + xclock_gettime_time64); +void __REDIRECT (xclock_settime, (clockid_t clock, const struct timespec *ts), + xclock_settime_time64); +#endif /* This helper can often simplify tests by avoiding an explicit variable declaration or allowing that declaration to be const. */ |