Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature-vt/sys/src/libc/9sys/cputime.c – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include <u.h>
2
#include <libc.h>
3
 
4
#define	HZ	1000
5
 
6
double
7
cputime(void)
8
{
9
	long t[4];
10
	int i;
11
 
12
	times(t);
13
	for(i=1; i<4; i++)
14
		t[0] += t[i];
15
	return t[0] / (double)HZ;
16
}