]> sourceware.org Git - glibc.git/commit
Change most internal uses of time to __clock_gettime.
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 24 Oct 2019 21:01:40 +0000 (21:01 +0000)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 30 Oct 2019 20:11:10 +0000 (17:11 -0300)
commitf9a7554009cf38f390e74fcabc5b49f974f72382
treeb8e5b100ca6f2bc18ff0b134d48c9e26e83325ba
parent0d563783490bf5b2d7d52cab205760fdff5d5650
Change most internal uses of time to __clock_gettime.

As for gettimeofday, time will be implemented based on clock_gettime
on all platforms and internal code should use clock_gettime
directly.  In addition to removing a layer of indirection, this will
allow us to remove the PLT-bypass gunk for gettimeofday.

The changed code always assumes __clock_gettime (CLOCK_REALTIME)
or __clock_gettime (CLOCK_REALTIME_COARSE) (for Linux case) cannot
fail, using the same rationale for gettimeofday change.  And internal
helper was added (time_now).

Checked on x86_64-linux-gnu, i686-linux-gnu, powerpc64le-linux-gnu,
powerpc64-linux-gnu, and powerpc-linux-gnu.

Reviewed-by: Lukasz Majewski <lukma@denx.de>
14 files changed:
include/time.h
misc/syslog.c
nscd/nscd_gethst_r.c
nscd/nscd_helper.c
string/strfry.c
sysdeps/unix/sysv/linux/check_native.c
sysdeps/unix/sysv/linux/check_pf.c
sysdeps/unix/sysv/linux/getsysstats.c
sysdeps/unix/sysv/linux/i386/time.c [deleted file]
sysdeps/unix/sysv/linux/ifaddrs.c
sysdeps/unix/sysv/linux/powerpc/time.c
sysdeps/unix/sysv/linux/x86/time.c
time/getdate.c
time/time.c
This page took 0.043158 seconds and 5 git commands to generate.