CLOCKSection: Linux Programmer's Manual (3)Updated: 2002-06-14 |
CLOCKSection: Linux Programmer's Manual (3)Updated: 2002-06-14 |
#include <time.h> clock_t clock(void);
Note that the time can wrap around. On a 32bit system where CLOCKS_PER_SEC equals 1000000 this function will return the same value approximately every 72 minutes.
On several other implementations, the value returned by clock() also includes the times of any children whose status has been collected via wait() (or another wait-type call). Linux does not include the times of waited-for children in the value returned by clock(). The times() function, which explicitly returns (separate) information about the caller and its children, may be preferable.