xref: /linux/include/uapi/linux/times.h (revision 498495dba268b20e8eadd7fe93c140c68b6cc9d2)
1*6f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2607ca46eSDavid Howells #ifndef _LINUX_TIMES_H
3607ca46eSDavid Howells #define _LINUX_TIMES_H
4607ca46eSDavid Howells 
5607ca46eSDavid Howells #include <linux/types.h>
6607ca46eSDavid Howells 
7607ca46eSDavid Howells struct tms {
8607ca46eSDavid Howells 	__kernel_clock_t tms_utime;
9607ca46eSDavid Howells 	__kernel_clock_t tms_stime;
10607ca46eSDavid Howells 	__kernel_clock_t tms_cutime;
11607ca46eSDavid Howells 	__kernel_clock_t tms_cstime;
12607ca46eSDavid Howells };
13607ca46eSDavid Howells 
14607ca46eSDavid Howells #endif
15