Monotonic time spans
The type for non-negative monotonic time spans. They represent the difference between two clock readings with nanosecond precision (1e-9s).
module Span : sig ... endTime spans
Monotonic wall-clock time counters
val counter : unit -> countercounter () is a counter counting from now on.
CPU time spans
val cpu_span : cpu_utime:span -> cpu_stime:span -> cpu_children_utime:span -> cpu_children_stime:span -> cpu_spancpu_span ~cpu_utime ~cpu_stime ~cpu_children_utime
~cpu_children_stime is a cpu span with the given fields. See accessors for semantics.
val cpu_zero : cpu_spancpu_zero is zero CPU times.
cpu_utime_s cpu is cpu's user time in seconds for children processes.
cpu_utime_s cpu is cpu's system time in seconds for children processes.
CPU time counters
val cpu_counter : unit -> cpu_countercpu_counter () is a counter counting from now on.
val cpu_count : cpu_counter -> cpu_spancpu_count c are CPU times since c was created.