]> sourceware.org Git - glibc.git/commit
y2038: Replace __clock_gettime with __clock_gettime64
authorLukasz Majewski <lukma@denx.de>
Mon, 16 Mar 2020 07:31:41 +0000 (08:31 +0100)
committerLukasz Majewski <lukma@denx.de>
Wed, 20 May 2020 14:45:16 +0000 (16:45 +0200)
commite9698175b0b60407db1e89bcf29437ab224bca0b
treecb1b6779101327e185e1868b5200cc8a06e98c0b
parent5b9b177bf62bcdaf42255f88ad9ebf090528c5e1
y2038: Replace __clock_gettime with __clock_gettime64

The __clock_gettime internal function is not supporting 64 bit time on
architectures with __WORDSIZE == 32 and __TIMESIZE != 64 (like e.g. ARM 32
bit).

The __clock_gettime64 function shall be used instead in the glibc itself as
it supports 64 bit time on those systems.
This patch does not bring any changes to systems with __WORDSIZE == 64 as
for them the __clock_gettime64 is aliased to __clock_gettime (in
./include/time.h).
benchtests/bench-timing.h
include/random-bits.h
login/logout.c
login/logwtmp.c
nis/nis_call.c
sysdeps/generic/hp-timing.h
sysdeps/generic/memusage.h
sysdeps/unix/sysv/linux/alpha/osf_gettimeofday.c
sysdeps/unix/sysv/linux/clock.c
This page took 0.045826 seconds and 5 git commands to generate.