1times.h(3HEAD) Headers times.h(3HEAD)
2
3
4
6 times.h, times - file access and modification times structure
7
9 #include <sys/times.h>
10
11
13 The <sys/times.h> header defines the structure tms, which is returned
14 by times() and includes the following members:
15
16 clock_t tms_utime /* user CPU time */
17 clock_t tms_stime /* system CPU time */
18 clock_t tms_cutime /* user CPU time of terminated
19 child processes */
20 clock_t tms_cstime /* system CPU time of terminated
21 child processes */
22
23
24
25 The clock_t type is defined as described in <sys/types.h>.
26
28 See attributes(5) for descriptions of the following attributes:
29
30
31
32
33 ┌─────────────────────────────┬─────────────────────────────┐
34 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
35 ├─────────────────────────────┼─────────────────────────────┤
36 │Interface Stability │Standard │
37 └─────────────────────────────┴─────────────────────────────┘
38
40 times(2), types.h(3HEAD), attributes(5), standards(5)
41
42
43
44SunOS 5.11 10 Sep 2004 times.h(3HEAD)