xref: /aosp_15_r20/external/musl/src/thread/thrd_yield.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <threads.h>
2 #include "syscall.h"
3 
thrd_yield()4 void thrd_yield()
5 {
6 	__syscall(SYS_sched_yield);
7 }
8