brintos

brintos / linux-shallow public Read only

0
0
Text · 278 B · 9c72df6 Raw
15 lines · c
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */2#ifndef _LINUX_TIMES_H3#define _LINUX_TIMES_H4 5#include <linux/types.h>6 7struct tms {8	__kernel_clock_t tms_utime;9	__kernel_clock_t tms_stime;10	__kernel_clock_t tms_cutime;11	__kernel_clock_t tms_cstime;12};13 14#endif15