Files
MentOS/libc/src/sched.c
T
Enrico Fraccaroli (Galfurian) 1b2bc49d41 Update license and remove unused files.
2022-01-27 15:12:36 -05:00

15 lines
418 B
C

/// @file sched.c
/// @brief Function for managing scheduler.
/// @copyright (c) 2014-2022 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#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)