Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
musl
/
a71b46cfd289aa0ff829fc9a436c59c398f8326d
/
.
/
src
/
sched
/
sched_yield.c
blob: ee6f0e7f160410c765146fd5713adcd9909627c1 [
file
] [
log
] [
blame
]
#include
<sched.h>
#include
"syscall.h"
int
sched_yield
()
{
return
syscall
(
SYS_sched_yield
);
}