You are looking at historical revision 34079 of this page. It may differ significantly from its current revision.
Module (chicken time)
This module provides a few basic procedures for measuring time. For representation and manipulation of calendar time, see Module (chicken time posix).
cpu-time
[procedure] (cpu-time)Returns the used CPU time of the current process in milliseconds as two values: the time spent in user code, and the time spent in system code. On platforms where user and system time can not be differentiated, system time will be always be 0.
current-milliseconds
[procedure] (current-milliseconds)Returns the number of milliseconds since process- or machine startup.
current-seconds
[procedure] (current-seconds)Returns the number of seconds since midnight, Jan. 1, 1970.
Previous: Module (chicken tcp)