sched_yield.c 97 B

1234567
  1. #include <sched.h>
  2. #include "syscall.h"
  3. int sched_yield()
  4. {
  5. return syscall(SYS_sched_yield);
  6. }