1 /* 2 * This file is auto-generated. Modifications will be lost. 3 * 4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ 5 * for more information. 6 */ 7 #ifndef _UAPI_LINUX_SCHED_TYPES_H 8 #define _UAPI_LINUX_SCHED_TYPES_H 9 #include <linux/types.h> 10 #define SCHED_ATTR_SIZE_VER0 48 11 #define SCHED_ATTR_SIZE_VER1 56 12 struct sched_attr { 13 __u32 size; 14 __u32 sched_policy; 15 __u64 sched_flags; 16 __s32 sched_nice; 17 __u32 sched_priority; 18 __u64 sched_runtime; 19 __u64 sched_deadline; 20 __u64 sched_period; 21 __u32 sched_util_min; 22 __u32 sched_util_max; 23 }; 24 #endif 25