Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Could you explain the difference between CLOCK_REALTIME and CLOCK_MONOTONIC clocks returned by clock_gettime() on Linux?

Which is a better choice if I need to compute elapsed time between timestamps produced by an external source and the current time?

Lastly, if I have an NTP daemon periodically adjusting system time, how do these adjustments interact with each of CLOCK_REALTIME and CLOCK_MONOTONIC?

share|improve this question

3 Answers

up vote 31 down vote accepted

CLOCK_REALTIME represents the machine's best-guess as to the current wall-clock, time-of-day time. As Ignacio and MarkR say, this means that CLOCK_REALTIME can jump forwards and backwards as the system time-of-day clock is changed, including by NTP.

CLOCK_MONOTONIC represents the absolute elapsed wall-clock time since some arbitrary, fixed point in the past. It isn't affected by changes in the system time-of-day clock.

If you want to compute the elapsed time between two events observed on the one machine without an intervening reboot, CLOCK_MONOTONIC is the best option.

share|improve this answer
1  
Note that on newer kernels, CLOCK_MONOTONIC_RAW is available which is even better (no NTP adjustments). – Joseph Garvin Aug 20 '12 at 13:59
@JosephGarvin for some value of "better", perhaps — CLOCK_MONOTONIC_RAW may run fast or slow of real time by several (or several hundred) parts per million, and its rate might vary due to environmental conditions like temperature or voltage (or steal time on virtual machines). On a properly-working machine, NTP does its best to mitigate all of those factors and so CLOCK_MONOTONIC more closely reflects true elapsed time. – hobbs Dec 29 '12 at 6:37
Granted, it might be interesting to have a CLOCK_MONOTONIC_PARBOILED that was affected by NTP's efforts to correct frequency errors, but unaffected by its efforts to correct phase errors, but that's a lot of complexity for a dubious gain :) – hobbs Dec 29 '12 at 6:40

CLOCK_REALTIME is affected by NTP, and can move forwards and backwards. CLOCK_MONOTONIC is not, and advances at one tick per tick.

share|improve this answer
1  
CLOCK_MONOTONIC is affected by NTP's time adjustment (time slewing). It won't jump, however. – derobert Aug 23 '11 at 20:19
But on newer kernels there is CLOCK_MONOTONIC_RAW, which really isn't affected by NTP. – Joseph Garvin Aug 20 '12 at 14:00

in addition to Ignacio's answer, CLOCK_REALTIME can go up forward in leaps, and occasionally backwards. CLOCK_MONOTONIC does neither, it just keeps going forwards (although it probably resets at reboot).

A robust app needs to be able to tolerate CLOCK_REALTIME leaping forwards occasionally (and perhaps backwards very slightly very occasionally, although that is more of an edge-case).

Imagine what happens when you suspend your laptop - CLOCK_REALTIME jumps forwards following the resume, CLOCK_MONOTONIC does not. Try it on a VM.

share|improve this answer
2  
CLOCK_MONOTONIC starts at 0 when the program starts; it is not for interprocess use. – Benubird Feb 9 '11 at 10:31
6  
@Benubird: It does not start at 0 when the program starts. That's CLOCK_PROCESS_CPUTIME_ID. Quick test: $ perl -w -MTime::HiRes=clock_gettime,CLOCK_MONOTONIC -E 'say clock_gettime(CLOCK_MONOTONIC)' --> 706724.117565279. That number matches system uptime on Linux, but the standard says its arbitrary. – derobert Aug 23 '11 at 20:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.