diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-09-05 14:37:15 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-09-05 14:37:15 -0700 |
commit | 7f621861fbdb1ea90c36b1a59a45cb84b4a2239f (patch) | |
tree | 73d72c4598277481b9e95a0c6fda65ca466ae7c2 /include | |
parent | 1c402c8cd1fb4d0524bab184f8609f7e098ccb2e (diff) | |
parent | 49048622eae698e5c4ae61f7e71200f265ccc529 (diff) | |
download | blackbird-op-linux-7f621861fbdb1ea90c36b1a59a45cb84b4a2239f.tar.gz blackbird-op-linux-7f621861fbdb1ea90c36b1a59a45cb84b4a2239f.zip |
Merge branch 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
sched: fix process time monotonicity
sched_clock: fix NOHZ interaction
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index cfb0d87b99fc..3d9120c5ad15 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1475,6 +1475,10 @@ static inline void put_task_struct(struct task_struct *t) __put_task_struct(t); } +extern cputime_t task_utime(struct task_struct *p); +extern cputime_t task_stime(struct task_struct *p); +extern cputime_t task_gtime(struct task_struct *p); + /* * Per process flags */ |