shithub: plan9front

ref: d2be4787c6e78df1a0fec1f6fdc75a616ecc1e1e
dir: /sys/src/cmd/2l/cputime.c/

View raw version
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] / 100.;
}