Lines Matching full:yield
1373 * sys_sched_yield - yield the current processor to other threads.
1387 * yield - yield the current processor to other threads.
1392 * eligible task to run, if removing the yield() call from your code breaks
1398 * yield();
1400 * where one assumes that yield() will let 'the other' process run that will
1402 * happen. Never use yield() as a progress guarantee!!
1404 * If you want to use yield() to wait for something, use wait_event().
1405 * If you want to use yield() to be 'nice' for others, use cond_resched().
1406 * If you still want to use yield(), do not!
1408 void __sched yield(void) in yield() function
1413 EXPORT_SYMBOL(yield);
1416 * yield_to - yield the current processor to another thread in
1428 * -ESRCH if there's no task to yield to.