Plan 9 from Bell Labs’s /n/sources/plan9/sys/src/cmd/kl/cputime.c

Copyright © 2009 Alcatel-Lucent.
Distributed under the Lucent Public License version 1.02.
Download the Plan 9 distribution.


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.;
}

long
seek(int f, long o, int p)
{
	long lseek(int, long, int);

	return lseek(f, o, p);
}

int
create(char *n, int m, long p)
{
	int creat(char*, int);

	if(m != 1)
		return -1;
	return creat(n, p);
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2009 Alcatel-Lucent. All Rights Reserved.
Comments to webmaster@plan9.bell-labs.com.