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