Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-mainline-go-art-release
/
.
/
src
/
thread
/
thrd_yield.c
blob: f7ad13219ce0db9912d1eaf259fbf9048eda8a4f [
file
] [
log
] [
blame
] [
edit
]
#include
<threads.h>
#include
"syscall.h"
void
thrd_yield
()
{
__syscall
(
SYS_sched_yield
);
}