Annotation of mstools/posix/h/sys/times.h, revision 1.1.1.2

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: --*/
                     15: 
                     16: #ifndef _SYS_TIMES_
                     17: #define _SYS_TIMES_
                     18: 
                     19: #include <sys/types.h>
                     20: 
1.1.1.2 ! root       21: #ifdef __cplusplus
        !            22: extern "C" {
        !            23: #endif
        !            24: 
1.1       root       25: #ifndef _CLOCK_T_DEFINED
                     26: #define _CLOCK_T_DEFINED
                     27: typedef long clock_t;
                     28: #endif
                     29: 
                     30: struct tms {
                     31:     clock_t tms_utime;
                     32:     clock_t tms_stime;
                     33:     clock_t tms_cutime;
                     34:     clock_t tms_cstime;
                     35: };
                     36: 
                     37: clock_t _CRTAPI1 times(struct tms *);
                     38: 
1.1.1.2 ! root       39: #ifdef __cplusplus
        !            40: }
        !            41: #endif
        !            42: 
1.1       root       43: #endif /* _SYS_TIMES_ */

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.