X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fsched%2Fsched_get_priority_max.c;h=30ae5100e1de4e5f863f16c131279851be3fbca5;hb=ccc7b4c3a17ade90de71e1e0f44deebbffd646e6;hp=64cbca93c9def1ca0e71851753cf3b803d5e0b89;hpb=61be1cfec1f5da66c68f92a6939e3a38e673c9d6;p=musl diff --git a/src/sched/sched_get_priority_max.c b/src/sched/sched_get_priority_max.c index 64cbca93..30ae5100 100644 --- a/src/sched/sched_get_priority_max.c +++ b/src/sched/sched_get_priority_max.c @@ -1,11 +1,12 @@ #include +#include "syscall.h" int sched_get_priority_max(int policy) { - return 0; + return syscall(SYS_sched_get_priority_max, policy); } int sched_get_priority_min(int policy) { - return 0; + return syscall(SYS_sched_get_priority_min, policy); }