Subversion Repositories Kolibri OS

Rev

Rev 4874 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4349 Serge 1
#ifndef _SYS_RESOURCE_H_
2
#define _SYS_RESOURCE_H_
3
 
4
#include 
5
 
6
#define	RUSAGE_SELF	0		/* calling process */
7
#define	RUSAGE_CHILDREN	-1		/* terminated child processes */
8
 
9
struct rusage {
10
  	struct timeval ru_utime;	/* user time used */
11
	struct timeval ru_stime;	/* system time used */
12
};
13
 
6099 serge 14
int	_EXFUN(getrusage, (int, struct rusage*));
15
 
4349 Serge 16
#endif
17