aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2007-08-09 05:16:48 -0400
committerIngo Molnar <mingo@elte.hu>2007-08-09 05:16:48 -0400
commitfd390f6a04f22fb457d6fd1855964f79536525de (patch)
tree753b2c9889a4127e6c4b4ea8d80bae972228a875 /include/linux/sched.h
parentf1e14ef64d3e1bdcb3437f1e926fe5a7f861aa0a (diff)
sched: remove the 'u64 now' parameter from ->enqueue_task()
remove the 'u64 now' parameter from ->enqueue_task(). ( identity transformation that causes no change in functionality. ) Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 62ddddb49db3..b11dedfbab6e 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -855,8 +855,7 @@ struct sched_domain;
855struct sched_class { 855struct sched_class {
856 struct sched_class *next; 856 struct sched_class *next;
857 857
858 void (*enqueue_task) (struct rq *rq, struct task_struct *p, 858 void (*enqueue_task) (struct rq *rq, struct task_struct *p, int wakeup);
859 int wakeup, u64 now);
860 void (*dequeue_task) (struct rq *rq, struct task_struct *p, 859 void (*dequeue_task) (struct rq *rq, struct task_struct *p,
861 int sleep, u64 now); 860 int sleep, u64 now);
862 void (*yield_task) (struct rq *rq, struct task_struct *p); 861 void (*yield_task) (struct rq *rq, struct task_struct *p);