]> sourceware.org Git - glibc.git/commit
y2038: Introduce struct __timex64 - new internal glibc type
authorLukasz Majewski <lukma@denx.de>
Tue, 21 Apr 2020 17:08:33 +0000 (19:08 +0200)
committerLukasz Majewski <lukma@denx.de>
Tue, 5 May 2020 17:36:25 +0000 (19:36 +0200)
commitdbf8178fdc1cc1c884efd2f5b55703da5adfb051
tree0b64b3939439231dda9d302db48a0842d8e4e0b0
parenta308615f7c067371df8bd96cb233cd0574537863
y2038: Introduce struct __timex64 - new internal glibc type

The introduced glibc's 'internal' struct __timex64 is a copy of Linux kernel's
struct __kernel_timex (v5.6) introduced for properly handling data for
clock_adjtime64 syscall.
As the struct's __kernel_timex size is the same as for archs with
__WORDSIZE == 64, proper padding and data types conversion (i.e. long to long
long) had to be added for architectures with __WORDSIZE == 32 &&
__TIMESIZE != 64.

Moreover, it stores time in struct __timeval64 rather than struct
timeval, which makes it Y2038-proof.

Build tests:
./src/scripts/build-many-glibcs.py glibcs

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
sysdeps/unix/sysv/linux/include/sys/timex.h
This page took 0.044292 seconds and 5 git commands to generate.