Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Utility routines. |
| 4 | * |
Denis Vlasenko | d18f52b | 2008-03-02 12:53:15 +0000 | [diff] [blame] | 5 | * Copyright (C) 2007 Denys Vlasenko |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 6 | * |
| 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 | |
Denis Vlasenko | 09c0a74 | 2008-06-07 23:43:43 +0000 | [diff] [blame] | 15 | /* Old glibc (< 2.3.4) does not provide this constant. We use syscall |
| 16 | * directly so this definition is safe. */ |
| 17 | #ifndef CLOCK_MONOTONIC |
| 18 | #define CLOCK_MONOTONIC 1 |
| 19 | #endif |
| 20 | |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 21 | /* libc has incredibly messy way of doing this, |
| 22 | * typically requiring -lrt. We just skip all this mess */ |
| 23 | unsigned long long monotonic_us(void) |
| 24 | { |
| 25 | struct timespec ts; |
| 26 | if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts)) |
| 27 | bb_error_msg_and_die("clock_gettime(MONOTONIC) failed"); |
| 28 | return ts.tv_sec * 1000000ULL + ts.tv_nsec/1000; |
| 29 | } |
Denis Vlasenko | bd7bb29 | 2007-06-17 23:40:26 +0000 | [diff] [blame] | 30 | unsigned monotonic_sec(void) |
| 31 | { |
| 32 | struct timespec ts; |
| 33 | if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts)) |
| 34 | bb_error_msg_and_die("clock_gettime(MONOTONIC) failed"); |
| 35 | return ts.tv_sec; |
| 36 | } |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 37 | #else |
| 38 | unsigned long long monotonic_us(void) |
| 39 | { |
| 40 | struct timeval tv; |
Denis Vlasenko | bd7bb29 | 2007-06-17 23:40:26 +0000 | [diff] [blame] | 41 | gettimeofday(&tv, NULL); |
Mike Frysinger | ebd27aa | 2007-06-18 07:12:31 +0000 | [diff] [blame] | 42 | return tv.tv_sec * 1000000ULL + tv.tv_usec; |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 43 | } |
Denis Vlasenko | bd7bb29 | 2007-06-17 23:40:26 +0000 | [diff] [blame] | 44 | |
| 45 | unsigned monotonic_sec(void) |
| 46 | { |
| 47 | return time(NULL); |
| 48 | } |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 49 | #endif |