home *** CD-ROM | disk | FTP | other *** search
- /* sys/times.h */
-
- /*
- * Structure returned by times()
- */
-
- #ifndef __SYS_TIMES_H
- #define __SYS_TIMES_H
-
- #include <sys/types.h>
-
- #define HZ 100
-
- struct tms {
- clock_t tms_utime; /* user time */
- clock_t tms_stime; /* system time */
- clock_t tms_cutime; /* user time, children */
- clock_t tms_cstime; /* system time, children */
- };
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- clock_t times(struct tms *tmsp);
-
- #ifdef __cplusplus
- }
- #endif
- #endif
-