From f9a7554009cf38f390e74fcabc5b49f974f72382 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Thu, 24 Oct 2019 21:01:40 +0000 Subject: [PATCH] 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 --- include/time.h | 12 +++++- misc/syslog.c | 2 +- nscd/nscd_gethst_r.c | 2 +- nscd/nscd_helper.c | 4 +- string/strfry.c | 4 +- sysdeps/unix/sysv/linux/check_native.c | 2 +- sysdeps/unix/sysv/linux/check_pf.c | 2 +- sysdeps/unix/sysv/linux/getsysstats.c | 2 +- sysdeps/unix/sysv/linux/i386/time.c | 34 ---------------- sysdeps/unix/sysv/linux/ifaddrs.c | 2 +- sysdeps/unix/sysv/linux/powerpc/time.c | 71 ++++++++++------------------------ sysdeps/unix/sysv/linux/x86/time.c | 34 ++++++---------- time/getdate.c | 2 +- time/time.c | 1 - 14 files changed, 53 insertions(+), 121 deletions(-) delete mode 100644 sysdeps/unix/sysv/linux/i386/time.c diff --git a/include/time.h b/include/time.h index de660f7..caf562a 100644 --- a/include/time.h +++ b/include/time.h @@ -7,12 +7,12 @@ # include # include