Module Posix_time.Timeval
type t= private{tv_sec : int64;tv_usec : int64;}POSIX timeval time value with seconds and microseconds. A normalized value of type
tmust have a value oftv_usecbetween0and1000000(exclusive).
val create : int64 -> int64 -> tcreate sec useccreates a new normalized timespec withsecseconds andusecmicroseconds.
val to_string : t -> stringto_string tcreates a string of the form "sec.usec".