Lines Matching full:yield
1370 * sys_sched_yield - yield the current processor to other threads.
1384 * yield - yield the current processor to other threads.
1389 * eligible task to run, if removing the yield() call from your code breaks
1395 * yield();
1397 * where one assumes that yield() will let 'the other' process run that will
1399 * happen. Never use yield() as a progress guarantee!!
1401 * If you want to use yield() to wait for something, use wait_event().
1402 * If you want to use yield() to be 'nice' for others, use cond_resched().
1403 * If you still want to use yield(), do not!
1405 void __sched yield(void) in yield() function
1410 EXPORT_SYMBOL(yield);
1413 * yield_to - yield the current processor to another thread in
1425 * -ESRCH if there's no task to yield to.