• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <sched.h>
2 #include "syscall.h"
3 
sched_yield()4 int sched_yield()
5 {
6 	return syscall(SYS_sched_yield, 0);
7 }
8