2019-04-22 00:13:41 +02:00
|
|
|
#include <Kernel/Syscall.h>
|
2019-06-07 11:49:03 +02:00
|
|
|
#include <errno.h>
|
|
|
|
|
#include <sched.h>
|
2019-04-22 00:13:41 +02:00
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
|
|
int sched_yield()
|
|
|
|
|
{
|
|
|
|
|
int rc = syscall(SC_yield);
|
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-29 23:20:51 +02:00
|
|
|
int sched_get_priority_min(int policy)
|
|
|
|
|
{
|
|
|
|
|
(void)policy;
|
|
|
|
|
return 0; // Idle
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int sched_get_priority_max(int policy)
|
|
|
|
|
{
|
|
|
|
|
(void)policy;
|
|
|
|
|
return 3; // High
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-07 11:49:03 +02:00
|
|
|
int sched_setparam(pid_t pid, const struct sched_param* param)
|
2019-05-29 23:20:51 +02:00
|
|
|
{
|
|
|
|
|
int rc = syscall(SC_sched_setparam, pid, param);
|
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-07 11:49:03 +02:00
|
|
|
int sched_getparam(pid_t pid, struct sched_param* param)
|
2019-05-29 23:20:51 +02:00
|
|
|
{
|
|
|
|
|
int rc = syscall(SC_sched_getparam, pid, param);
|
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
|
}
|
2019-04-22 00:13:41 +02:00
|
|
|
}
|