|
|
1.1 root 1: /*++
2:
3: Copyright (c) 1989 Microsoft Corporation
4:
5: Module Name:
6:
7: times.h
8:
9: Abstract:
10:
11: This module contains the tms structure and clock_t described in section
12: 4.5.2.2 of IEEE P1003.1/Draft 13.
13:
14: Author:
15:
16: Mark Lucovsky (markl) 15-Mar-1989
17:
18: Revision History:
19:
20: --*/
21:
22: #ifndef _SYS_TIMES_
23: #define _SYS_TIMES_
24:
25: #include <sys/types.h>
26:
27: #ifndef _CLOCK_T_DEFINED
28: #define _CLOCK_T_DEFINED
29: typedef long clock_t;
30: #endif
31:
32: struct tms {
33: clock_t tms_utime;
34: clock_t tms_stime;
35: clock_t tms_cutime;
36: clock_t tms_cstime;
37: };
38:
39: clock_t _CRTAPI1 times(struct tms *);
40:
41: #endif /* _SYS_TIMES_ */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.