thrd_yield(3) | Library Functions Manual | thrd_yield(3) |
NAME
thrd_yield
— yield
the execution to another thread
SYNOPSIS
library “threads”
#include <threads.h>
void
thrd_yield
();
DESCRIPTION
The function
thrd_yield
()
will yield execution from the current thread to an other thread, that have
the same or a higher execution priority.
SEE ALSO
thrd_create(3) thrd_exit(3) thrd_current(3) thrd_detach(3) thrd_join(3) thrd_equal(3) thrd_sleep(3)
HISTORY
The thrd_yield
() function first appeared
in the C11 standard ISO/IEC 9899:2011.
AUTHORS
Jan Adelsbach <jan@jadelsbach.de>
May 9, 2020 | Debian |