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