musl-tcc/src/thread/thrd_yield.c
2022-03-20 16:48:53 +08:00

8 lines
94 B
C

#include <threads.h>
#include "syscall.h"
void thrd_yield()
{
__syscall(SYS_sched_yield);
}