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