Does Linux provide a monotonically increasing cloc

2019-06-15 08:44发布

问题:

Does Linux/Unix/Posix provide an API to user-space applications to access a monotonically increasing clock, with centisecond to millisecond accuracy?

On Linux, /proc/uptime provides a string-based representation of a floating point number of the number of seconds the system has been up.

gettimeofday(2) does not provide a monotonically increasing clock.

I could use getitimer(2) in the ITIMER_REAL time domain, set the timer to start at the (platform dependent) maximum and ignore the signal generated, but according to the man page the longest the timer can run for is approximately 100 days, which is shorter than my expected run time.

回答1:

Use the POSIX clock_gettime() function with CLOCK_MONOTONIC. See the man page for details.



回答2:

There is clock_gettime:

struct timespec tp;
clock_gettime(CLOCK_MONOTONIC, &tp);


标签: linux unix timer