|
NAMEpthread_yield —
yield control of the current thread
LIBRARYPOSIX Threads Library (libpthread, -lpthread)SYNOPSIS#include <pthread.h>
void
DESCRIPTIONThepthread_yield () forces the running thread to
relinquish the processor until it again becomes the head of its thread list.
SEE ALSOsched_yield(2)STANDARDSThepthread_yield () is a non-portable (but quite common)
extension to IEEE Std 1003.1-2001
(“POSIX.1”).
Visit the GSP FreeBSD Man Page Interface. |