1: /*
2: * Copyright (c) 1982, 1986 Regents of the University of California.
3: * All rights reserved. The Berkeley software License Agreement
4: * specifies the terms and conditions for redistribution.
5: *
6: * @(#)times.h 7.1 (Berkeley) 6/4/86
7: */
8:
9: /*
10: * Structure returned by times()
11: */
12: struct tms {
13: time_t tms_utime; /* user time */
14: time_t tms_stime; /* system time */
15: time_t tms_cutime; /* user time, children */
16: time_t tms_cstime; /* system time, children */
17: };
Defined struct's
tms
defined in line
12; used 36 times
Usage of this include