module Mtime:sig..end
Mtime gives access to the 64-bit free running system timer
counter. Note that this time is independent from the CPU speed.
References
typespan_us =int64
val elapsed_us : unit -> span_uselapsed () is the number of microseconds elasped since boot
time.val sleep_us : span_us -> unitsleep_us d blocks and sleeps for d microseconds.type counter
val counter : unit -> countercounter () is a counter counting from call time on.val counter_value_us : counter -> span_uscounter_value_us c is the current counter value in microseconds.val s_to_us : int64s_to_us is the number of microseconds in one second.val ms_to_us : int64ms_to_us is the number of microseconds in one millisecond.