From 61be1cfec1f5da66c68f92a6939e3a38e673c9d6 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 3 May 2012 23:18:26 -0400 Subject: implement stub versions of sched_* these actually work, but for now they prohibit actually setting priority levels and report min/max priority as 0. --- src/sched/sched_get_priority_max.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/sched/sched_get_priority_max.c (limited to 'src/sched/sched_get_priority_max.c') diff --git a/src/sched/sched_get_priority_max.c b/src/sched/sched_get_priority_max.c new file mode 100644 index 00000000..64cbca93 --- /dev/null +++ b/src/sched/sched_get_priority_max.c @@ -0,0 +1,11 @@ +#include + +int sched_get_priority_max(int policy) +{ + return 0; +} + +int sched_get_priority_min(int policy) +{ + return 0; +} -- cgit v1.2.1