thrd_yield.c 94 B

1234567
  1. #include <threads.h>
  2. #include "syscall.h"
  3. void thrd_yield()
  4. {
  5. __syscall(SYS_sched_yield);
  6. }