diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-07-09 18:51:58 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-07-09 18:51:58 +0200 |
commit | 41b86e9c510ae66639bf29d3201e1d2384a7fde6 (patch) | |
tree | f340b94f53be08e2fbba2344deb985f9ecb4a036 /include | |
parent | 20d315d42aed95423a7203e1d7e84086004b5a00 (diff) | |
download | kernel_samsung_smdk4412-41b86e9c510ae66639bf29d3201e1d2384a7fde6.zip kernel_samsung_smdk4412-41b86e9c510ae66639bf29d3201e1d2384a7fde6.tar.gz kernel_samsung_smdk4412-41b86e9c510ae66639bf29d3201e1d2384a7fde6.tar.bz2 |
sched: make posix-cpu-timers use CFS's accounting information
update the posix-cpu-timers code to use CFS's CPU accounting information.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 995eb40..3e7f189 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -482,7 +482,8 @@ struct signal_struct { * from jiffies_to_ns(utime + stime) if sched_clock uses something * other than jiffies.) */ - unsigned long long sched_time; + unsigned long sched_time; + unsigned long long sum_sched_runtime; /* * We don't bother to synchronize most readers of this at all, @@ -1308,7 +1309,7 @@ static inline int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask) extern unsigned long long sched_clock(void); extern unsigned long long -current_sched_time(const struct task_struct *current_task); +task_sched_runtime(struct task_struct *task); /* sched_exec is called by processes performing an exec */ #ifdef CONFIG_SMP |