From 2c5484f7b200ff6ecb444b2bef4830c772064257 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 6 May 2014 20:27:10 +0200 Subject: lib/boottime: add a new file Signed-off-by: Karel Zak --- lib/boottime.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 lib/boottime.c (limited to 'lib') diff --git a/lib/boottime.c b/lib/boottime.c new file mode 100644 index 000000000..335570cc1 --- /dev/null +++ b/lib/boottime.c @@ -0,0 +1,34 @@ + +#include +#include +#include + +#include "c.h" +#include "nls.h" +#include "boottime.h" + +int get_boot_time(struct timeval *boot_time) +{ + struct timespec hires_uptime; + struct timeval lores_uptime, now; + struct sysinfo info; + + if (gettimeofday(&now, NULL) != 0) { + warn(_("gettimeofday failed")); + return -errno; + } +#ifdef CLOCK_BOOTTIME + if (clock_gettime(CLOCK_BOOTTIME, &hires_uptime) == 0) { + TIMESPEC_TO_TIMEVAL(&lores_uptime, &hires_uptime); + timersub(&now, &lores_uptime, boot_time); + return 0; + } +#endif + /* fallback */ + if (sysinfo(&info) != 0) + warn(_("sysinfo failed")); + + boot_time->tv_sec = now.tv_sec - info.uptime; + boot_time->tv_usec = 0; + return 0; +} -- cgit v1.2.3-55-g7522