diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-02-26 15:21:59 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-02-27 02:35:19 -0500 |
commit | 1b49061d400c9e51e3ac2aac026a099fe599b9bb (patch) | |
tree | 54c632cd7f0be2573897c1463a247e69fb769940 /include | |
parent | 14131f2f98ac350ee9e73faed916d2238a8b6a0d (diff) | |
parent | 83ce400928680a6c8123d492684b27857f5a2d95 (diff) |
Merge branch 'sched/clock' into tracing/ftrace
Conflicts:
kernel/sched_clock.c
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 426666dd8203..7702cb166e08 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -1672,6 +1672,16 @@ static inline int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask) | |||
1672 | return set_cpus_allowed_ptr(p, &new_mask); | 1672 | return set_cpus_allowed_ptr(p, &new_mask); |
1673 | } | 1673 | } |
1674 | 1674 | ||
1675 | /* | ||
1676 | * Architectures can set this to 1 if they have specified | ||
1677 | * CONFIG_HAVE_UNSTABLE_SCHED_CLOCK in their arch Kconfig, | ||
1678 | * but then during bootup it turns out that sched_clock() | ||
1679 | * is reliable after all: | ||
1680 | */ | ||
1681 | #ifdef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK | ||
1682 | extern int sched_clock_stable; | ||
1683 | #endif | ||
1684 | |||
1675 | extern unsigned long long sched_clock(void); | 1685 | extern unsigned long long sched_clock(void); |
1676 | 1686 | ||
1677 | extern void sched_clock_init(void); | 1687 | extern void sched_clock_init(void); |