14 lines
288 B
C
14 lines
288 B
C
//
|
|
// Created by enryf on 24/09/2020.
|
|
//
|
|
|
|
#include "system/syscall_types.h"
|
|
#include "sys/errno.h"
|
|
#include "sched.h"
|
|
|
|
_syscall2(int, sched_setparam, pid_t, pid, const sched_param_t *, param)
|
|
|
|
_syscall2(int, sched_getparam, pid_t, pid, sched_param_t *, param)
|
|
|
|
_syscall0(int, waitperiod)
|