shithub: plan9front

ref: 1f80d31f41a630860d1e1b5712546a3dc9993b4c
dir: /sys/src/cmd/1l/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.;
}