#include <sys/time.h> clock_t times( struct tms *buf );
This routine returns the process times
times
stores the current process times in buf
.
struct tms
is as defined in /usr/include/sys/times.h
times
returns the number of clock ticks that have elapsed
since the systm has been up.
NONE
Copyright © 1988-2000 OAR Corporation