diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 15f05ff453d8..be5d31752dbd 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -1563,6 +1563,10 @@ int sched_nr_latency_handler(struct ctl_table *table, int write, | |||
1563 | extern unsigned int sysctl_sched_rt_period; | 1563 | extern unsigned int sysctl_sched_rt_period; |
1564 | extern int sysctl_sched_rt_runtime; | 1564 | extern int sysctl_sched_rt_runtime; |
1565 | 1565 | ||
1566 | int sched_rt_handler(struct ctl_table *table, int write, | ||
1567 | struct file *filp, void __user *buffer, size_t *lenp, | ||
1568 | loff_t *ppos); | ||
1569 | |||
1566 | extern unsigned int sysctl_sched_compat_yield; | 1570 | extern unsigned int sysctl_sched_compat_yield; |
1567 | 1571 | ||
1568 | #ifdef CONFIG_RT_MUTEXES | 1572 | #ifdef CONFIG_RT_MUTEXES |
@@ -2052,6 +2056,9 @@ extern unsigned long sched_group_shares(struct task_group *tg); | |||
2052 | extern int sched_group_set_rt_runtime(struct task_group *tg, | 2056 | extern int sched_group_set_rt_runtime(struct task_group *tg, |
2053 | long rt_runtime_us); | 2057 | long rt_runtime_us); |
2054 | extern long sched_group_rt_runtime(struct task_group *tg); | 2058 | extern long sched_group_rt_runtime(struct task_group *tg); |
2059 | extern int sched_group_set_rt_period(struct task_group *tg, | ||
2060 | long rt_period_us); | ||
2061 | extern long sched_group_rt_period(struct task_group *tg); | ||
2055 | #endif | 2062 | #endif |
2056 | #endif | 2063 | #endif |
2057 | 2064 | ||