Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
refs/heads/master
/
.
/
src
/
thread
/
thrd_yield.c
blob: f7ad13219ce0db9912d1eaf259fbf9048eda8a4f [
file
] [
log
] [
blame
] [
edit
]
#include
<threads.h>
#include
"syscall.h"
void
thrd_yield
()
{
__syscall
(
SYS_sched_yield
);
}