Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 3960f2faaf0a67ad352bd5d4085e43f19f33ab91 13 lines 179 B view raw
1#ifndef _LINUX_TIMES_H 2#define _LINUX_TIMES_H 3 4#include <linux/types.h> 5 6struct tms { 7 clock_t tms_utime; 8 clock_t tms_stime; 9 clock_t tms_cutime; 10 clock_t tms_cstime; 11}; 12 13#endif