From 0f30d227497418c6d3bef7d52244407e30454504 Mon Sep 17 00:00:00 2001 From: Kacper Date: Mon, 22 Dec 2025 23:27:56 +0100 Subject: Added c11 threads, fixed some locks and add *_unlocked functions --- lib/libc/sched/sched_setparam.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/libc/sched/sched_setparam.c (limited to 'lib/libc/sched/sched_setparam.c') diff --git a/lib/libc/sched/sched_setparam.c b/lib/libc/sched/sched_setparam.c new file mode 100644 index 00000000..2eae75dd --- /dev/null +++ b/lib/libc/sched/sched_setparam.c @@ -0,0 +1,7 @@ +#include +#include + +int sched_setparam(pid_t pid, const struct sched_param *param) +{ + return syscall(sched_setparam, pid, param); +} -- cgit v1.2.3