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