| * Copyright (C) 2007 Denis Vlasenko |
| * Licensed under GPL version 2, see file LICENSE in this tarball for details. |
| #if ENABLE_MONOTONIC_SYSCALL |
| /* libc has incredibly messy way of doing this, |
| * typically requiring -lrt. We just skip all this mess */ |
| unsigned long long monotonic_us(void) |
| if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts)) |
| bb_error_msg_and_die("clock_gettime(MONOTONIC) failed"); |
| return ts.tv_sec * 1000000ULL + ts.tv_nsec/1000; |
| unsigned monotonic_sec(void) |
| if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts)) |
| bb_error_msg_and_die("clock_gettime(MONOTONIC) failed"); |
| unsigned long long monotonic_us(void) |
| return tv.tv_sec * 1000000ULL + tv.tv_usec; |
| unsigned monotonic_sec(void) |