Sign in
mojo
/
mojo-tools
/
6d10d6bbfecec30019b2fe5c06e28a809f0d9753
/
.
/
fusl
/
src
/
sched
/
sched_yield.c
blob: 932fba120af884f7052cf0dca62c9f26706ea93c [
file
] [
log
] [
blame
]
#include
<sched.h>
#include
"syscall.h"
int
sched_yield
()
{
return
syscall
(
SYS_sched_yield
);
}