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 – tendra.SVN – Blame – /trunk/src/lib/machines/freebsd/80x86/include/sys/times.h – Rev 74

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | 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