xref: /third_party/musl/src/thread/thrd_yield.c (revision 570af302)
1#include <threads.h>
2#include "syscall.h"
3
4void thrd_yield()
5{
6#ifdef __LITEOS_A__
7	__syscall(SYS_sched_yield, -1);
8#else
9	__syscall(SYS_sched_yield);
10#endif
11}
12