diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2012-03-06 12:54:26 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2012-03-12 15:43:17 -0400 |
commit | 8e3fabfde445a872c8aec2296846badf24d7c8b4 (patch) | |
tree | 60f47d850adc39aff6de56ec82d7e1a13d93d4a8 /kernel/sched/core.c | |
parent | 3ccf3e8306156a28213adc720aba807e9a901ad5 (diff) |
sched: Update yield() docs
Suggested-by: Joe Perches <joe@perches.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1331056466.11248.327.camel@twins
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched/core.c')
-rw-r--r-- | kernel/sched/core.c | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 8781cec7c3e6..47614a5cdd47 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c | |||
@@ -4577,8 +4577,24 @@ EXPORT_SYMBOL(__cond_resched_softirq); | |||
4577 | /** | 4577 | /** |
4578 | * yield - yield the current processor to other threads. | 4578 | * yield - yield the current processor to other threads. |
4579 | * | 4579 | * |
4580 | * This is a shortcut for kernel-space yielding - it marks the | 4580 | * Do not ever use this function, there's a 99% chance you're doing it wrong. |
4581 | * thread runnable and calls sys_sched_yield(). | 4581 | * |
4582 | * The scheduler is at all times free to pick the calling task as the most | ||
4583 | * eligible task to run, if removing the yield() call from your code breaks | ||
4584 | * it, its already broken. | ||
4585 | * | ||
4586 | * Typical broken usage is: | ||
4587 | * | ||
4588 | * while (!event) | ||
4589 | * yield(); | ||
4590 | * | ||
4591 | * where one assumes that yield() will let 'the other' process run that will | ||
4592 | * make event true. If the current task is a SCHED_FIFO task that will never | ||
4593 | * happen. Never use yield() as a progress guarantee!! | ||
4594 | * | ||
4595 | * If you want to use yield() to wait for something, use wait_event(). | ||
4596 | * If you want to use yield() to be 'nice' for others, use cond_resched(). | ||
4597 | * If you still want to use yield(), do not! | ||
4582 | */ | 4598 | */ |
4583 | void __sched yield(void) | 4599 | void __sched yield(void) |
4584 | { | 4600 | { |