add SIMULATERTI
[unix-history] / usr / src / sys / sys / times.h
CommitLineData
4ca1d1c0
BJ
1/* times.h 3.1 %H% */
2
3/*
4 * Structure returned by times()
5 */
6struct tms {
7 time_t tms_utime; /* user time */
8 time_t tms_stime; /* system time */
9 time_t tms_cutime; /* user time, children */
10 time_t tms_cstime; /* system time, children */
11};