You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
179 B
14 lines
179 B
20 years ago
|
#ifndef _LINUX_TIMES_H
|
||
|
#define _LINUX_TIMES_H
|
||
|
|
||
|
#include <linux/types.h>
|
||
|
|
||
|
struct tms {
|
||
|
clock_t tms_utime;
|
||
|
clock_t tms_stime;
|
||
|
clock_t tms_cutime;
|
||
|
clock_t tms_cstime;
|
||
|
};
|
||
|
|
||
|
#endif
|