Subversion Repositories tendra.SVN

Rev

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

Rev Author Line No. Line
74 7u83 1
typedef	unsigned int	clock_t;
2
 
3
 
4
struct tms {
5
	clock_t tms_utime;	/* User CPU time */
6
	clock_t tms_stime;	/* System CPU time */
7
	clock_t tms_cutime;	/* User CPU time of terminated child procs */
8
	clock_t tms_cstime;	/* System CPU time of terminated child procs */
9
};
10
 
11