Luna/libs/libc/src/sched.cpp

11 lines
153 B
C++
Raw Normal View History

2022-10-15 09:43:13 +00:00
#include <sched.h>
#include <sys/syscall.h>
#include <unistd.h>
extern "C"
{
int sched_yield()
{
return (int)syscall(SYS_yield);
}
}