2020-06-15 07:18:57 -07:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_TMS_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_TMS_H_
|
2022-08-13 13:11:56 -07:00
|
|
|
COSMOPOLITAN_C_START_
|
2020-06-15 07:18:57 -07:00
|
|
|
|
|
|
|
struct tms {
|
|
|
|
int64_t tms_utime; /* userspace time */
|
|
|
|
int64_t tms_stime; /* kernelspace time */
|
|
|
|
int64_t tms_cutime; /* children userspace time */
|
|
|
|
int64_t tms_cstime; /* children kernelspace time */
|
|
|
|
};
|
|
|
|
|
2024-01-09 01:26:03 -08:00
|
|
|
long times(struct tms *) libcesque;
|
2022-06-08 20:01:28 -07:00
|
|
|
|
2022-08-13 13:11:56 -07:00
|
|
|
COSMOPOLITAN_C_END_
|
2020-06-15 07:18:57 -07:00
|
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_TMS_H_ */
|