11 #include <sys/param.h>
12 #include <sys/times.h>
13 #include <sys/types.h>
17 #define DIVIDER CLK_TCK
19 #define DIVIDER HZ // for old BSD systems
31 #else // works for SUN, LINUX, DECALPHA, SGI
34 static int firstcall = 1;
35 static struct tms buf0;
44 clock_t rv = times(&buf);
46 return ((
double)(rv - rv0) / (
double)
DIVIDER);
50 (buf.tms_utime + buf.tms_stime + buf.tms_cutime + buf.tms_cstime) -
51 (buf0.tms_utime + buf0.tms_stime + buf0.tms_cutime + buf0.tms_cstime)