|
|
1.1 root 1: /* (-lgl
2: * COHERENT Version 4.0
3: * Copyright (c) 1982, 1992 by Mark Williams Company.
4: * All rights reserved. May not be copied without permission.
5: -lgl) */
6: /*
7: * Structure returned by the `times' system call.
8: */
9:
10: #ifndef TIMES_H
11: #define TIMES_H TIMES_H
12:
13: #ifdef _I386
14: struct tms {
15: long tms_utime; /* Process user time */
16: long tms_stime; /* Process system time */
17: long tms_cutime; /* Child user time */
18: long tms_cstime; /* Child system time */
19: };
20: #else
21: struct tbuffer {
22: long tb_utime; /* Process user time */
23: long tb_stime; /* Process system time */
24: long tb_cutime; /* Child user time */
25: long tb_cstime; /* Child system time */
26: };
27: #endif
28:
29: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.