Files
MentOS/libc/src/sched.c
T
Enrico Fraccaroli (Galfurian) 30e01ba560 Update version
2024-01-17 13:49:48 +01:00

15 lines
418 B
C

/// @file sched.c
/// @brief Function for managing scheduler.
/// @copyright (c) 2014-2024 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#include "system/syscall_types.h"
#include "sched.h"
#include "sys/errno.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)