11 lines
153 B
C++
11 lines
153 B
C++
|
#include <sched.h>
|
||
|
#include <sys/syscall.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
extern "C"
|
||
|
{
|
||
|
int sched_yield()
|
||
|
{
|
||
|
return (int)syscall(SYS_yield);
|
||
|
}
|
||
|
}
|