Sign in
mojo
/
mojo-tools
/
d3bdee862d3e247d64145c167ea593171d1f600f
/
.
/
fusl
/
src
/
thread
/
thrd_yield.c
blob: a4ecf43740bd0a678535ca106526e4bcfb360ee5 [
file
]
#include
<threads.h>
#include
"syscall.h"
void
thrd_yield
()
{
__syscall
(
SYS_sched_yield
);
}