Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
ad1cd43a86645ba2d4f7c8747240452a349d6bc1
/
.
/
src
/
thread
/
thrd_yield.c
blob: f7ad13219ce0db9912d1eaf259fbf9048eda8a4f [
file
] [
log
] [
blame
]
#include
<threads.h>
#include
"syscall.h"
void
thrd_yield
()
{
__syscall
(
SYS_sched_yield
);
}