P99

◆ TIME_MONOTONIC

#define TIME_MONOTONIC   p00_time_monotonic

expands to an integer constant greater than 0 that designates a real time clock who's base is usually the boot time of the processor

If this is available, this denotes a clock that should be a bit more efficient than TIME_UTC, since it usually doesn't have to perform a call into the OS kernel but may query the processor directly.

Use this if available and if you are only interested in times relative to your program execution, e.g for benchmarks.

Definition at line 215 of file p99_clib.h.