From: Ingo Molnar Date: Mon, 9 Jul 2007 16:51:57 +0000 (+0200) Subject: sched: add SCHED_IDLE policy X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=0e6aca43e08a62a48d6770e9a159dbec167bf4c6;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git sched: add SCHED_IDLE policy this patch adds the SCHED_IDLE policy to sched.h. Signed-off-by: Ingo Molnar --- diff --git a/include/linux/sched.h b/include/linux/sched.h index 2acfb23f368..7e74262f98e 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -34,6 +34,8 @@ #define SCHED_FIFO 1 #define SCHED_RR 2 #define SCHED_BATCH 3 +/* SCHED_ISO: reserved but not implemented yet */ +#define SCHED_IDLE 5 #ifdef __KERNEL__