git: 9front

ref: 4b0c17c8e2f8b4fb4bc4ec33f71e5cf761aef407
dir: /sys/src/libc/9sys/cputime.c/

View raw version
#include <u.h>
#include <libc.h>

#define	HZ	1000

double
cputime(void)
{
	long t[4];
	long times(long*);
	int i;

	times(t);
	for(i=1; i<4; i++)
		t[0] += t[i];
	return t[0] / (double)HZ;
}