realtime :: Timespec :: microsec
May cause an Int overflow, use only with a low number of seconds.
Int
# Elapsed time in microseconds, with both whole seconds and the rest # # May cause an `Int` overflow, use only with a low number of seconds. fun microsec: Int `{ return self->tv_sec*1000000 + self->tv_nsec/1000; `}