Files
MentOS/libc/src/sched.c
T
2021-10-04 11:44:02 +02:00

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)