blob: 3aa0ee318f4d728f3474668daa42440af599bf70 [file] [log] [blame]
Denis Vlasenko459be352007-06-17 19:09:05 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Denis Vlasenkod18f52b2008-03-02 12:53:15 +00005 * Copyright (C) 2007 Denys Vlasenko
Denis Vlasenko459be352007-06-17 19:09:05 +00006 *
7 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
8 */
9
10#include "libbb.h"
11
12#if ENABLE_MONOTONIC_SYSCALL
13#include <sys/syscall.h>
14
15/* libc has incredibly messy way of doing this,
16 * typically requiring -lrt. We just skip all this mess */
17unsigned long long monotonic_us(void)
18{
19 struct timespec ts;
20 if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts))
21 bb_error_msg_and_die("clock_gettime(MONOTONIC) failed");
22 return ts.tv_sec * 1000000ULL + ts.tv_nsec/1000;
23}
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000024unsigned monotonic_sec(void)
25{
26 struct timespec ts;
27 if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts))
28 bb_error_msg_and_die("clock_gettime(MONOTONIC) failed");
29 return ts.tv_sec;
30}
Denis Vlasenko459be352007-06-17 19:09:05 +000031#else
32unsigned long long monotonic_us(void)
33{
34 struct timeval tv;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000035 gettimeofday(&tv, NULL);
Mike Frysingerebd27aa2007-06-18 07:12:31 +000036 return tv.tv_sec * 1000000ULL + tv.tv_usec;
Denis Vlasenko459be352007-06-17 19:09:05 +000037}
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000038
39unsigned monotonic_sec(void)
40{
41 return time(NULL);
42}
Denis Vlasenko459be352007-06-17 19:09:05 +000043#endif