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