Module B0_std.Time
Measuring time.
Support to measure monotonic wall-clock time, CPU user and CPU system time.
Monotonic time spans
type span
The type for non-negative monotonic time spans. They represent the difference between two clock readings with nanosecond precision (1e-9s).
module Span : sig ... end
Time spans
Monotonic wall-clock time counters
val counter : unit -> counter
counter ()
is a counter counting from now on.
CPU time spans
val cpu_zero : cpu_span
cpu_zero
is zero CPU times.
val cpu_children_utime : cpu_span -> span
cpu_utime_s cpu
iscpu
's user time in seconds for children processes.
CPU time counters
val cpu_counter : unit -> cpu_counter
cpu_counter ()
is a counter counting from now on.
val cpu_count : cpu_counter -> cpu_span
cpu_count c
are CPU times sincec
was created.