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