|
NAMEcputime, times - cpu time in this process and childrenSYNOPSIS#include <u.h>#include <libc.h> int times(long t[4]) double cputime(void) DESCRIPTIONIf t is non-null, times fills it in with the number of milliseconds spent in user code, system calls, child processes in user code, and child processes in system calls. Cputime returns the sum of those same times, converted to seconds. Times returns the elapsed real time, in milliseconds, that the process has been running.SOURCE/src/lib9/time.c Visit the GSP FreeBSD Man Page Interface. |