I think Foundation.clock()
is re-exported from the standard C library.
It measures processor time, used by the calling process, in microseconds.
import Darwin
clock()
clock_gettime_nsec_np(CLOCK_PROCESS_CPUTIME_ID) / 1000
I think Foundation.clock()
is re-exported from the standard C library.
It measures processor time, used by the calling process, in microseconds.
import Darwin
clock()
clock_gettime_nsec_np(CLOCK_PROCESS_CPUTIME_ID) / 1000