source:
kBuild/trunk/src/ash/win/sys/times.h@
632
| Last change on this file since 632 was 632, checked in by , 18 years ago | |
|---|---|
| File size: 413 bytes | |
| Line | |
|---|---|
| 1 | #ifndef __sys_times_h__ |
| 2 | #define __sys_times_h__ |
| 3 | #include <time.h> |
| 4 | |
| 5 | struct tms |
| 6 | { |
| 7 | clock_t tms_utime; /**< User mode CPU time. */ |
| 8 | clock_t tms_stime; /**< Kernel mode CPU time. */ |
| 9 | clock_t tms_cutime; /**< User mode CPU time for waited for children. */ |
| 10 | clock_t tms_cstime; /**< Kernel mode CPU time for waited for children. */ |
| 11 | }; |
| 12 | |
| 13 | clock_t times(struct tms *); |
| 14 | |
| 15 | #endif |
Note:
See TracBrowser
for help on using the repository browser.

