diff options
author | Samir Bellabes <sam@synack.fr> | 2011-05-11 12:18:05 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-05-12 03:36:37 -0400 |
commit | 3e51e3edfd81bfd9853ad7de91167e4ce33d0fe7 (patch) | |
tree | 777d871949911f3e79a5b94545a7b6a55bdc2259 /include/linux/sched.h | |
parent | 9cb5baba5e3acba0994ad899ee908799104c9965 (diff) |
sched: Remove unused parameters from sched_fork() and wake_up_new_task()
sched_fork() and wake_up_new_task() are defined with a parameter
'unsigned long clone_flags', which is unused.
This patch removes the parameters.
Signed-off-by: Samir Bellabes <sam@synack.fr>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1305130685-1047-1-git-send-email-sam@synack.fr
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 6b4280b23ee6..12211e1666e2 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -2051,14 +2051,13 @@ extern void xtime_update(unsigned long ticks); | |||
2051 | 2051 | ||
2052 | extern int wake_up_state(struct task_struct *tsk, unsigned int state); | 2052 | extern int wake_up_state(struct task_struct *tsk, unsigned int state); |
2053 | extern int wake_up_process(struct task_struct *tsk); | 2053 | extern int wake_up_process(struct task_struct *tsk); |
2054 | extern void wake_up_new_task(struct task_struct *tsk, | 2054 | extern void wake_up_new_task(struct task_struct *tsk); |
2055 | unsigned long clone_flags); | ||
2056 | #ifdef CONFIG_SMP | 2055 | #ifdef CONFIG_SMP |
2057 | extern void kick_process(struct task_struct *tsk); | 2056 | extern void kick_process(struct task_struct *tsk); |
2058 | #else | 2057 | #else |
2059 | static inline void kick_process(struct task_struct *tsk) { } | 2058 | static inline void kick_process(struct task_struct *tsk) { } |
2060 | #endif | 2059 | #endif |
2061 | extern void sched_fork(struct task_struct *p, int clone_flags); | 2060 | extern void sched_fork(struct task_struct *p); |
2062 | extern void sched_dead(struct task_struct *p); | 2061 | extern void sched_dead(struct task_struct *p); |
2063 | 2062 | ||
2064 | extern void proc_caches_init(void); | 2063 | extern void proc_caches_init(void); |