summaryrefslogtreecommitdiff
path: root/src/sched/sched_setparam.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-05-03 23:18:26 -0400
committerRich Felker <dalias@aerifal.cx>2012-05-03 23:18:26 -0400
commit61be1cfec1f5da66c68f92a6939e3a38e673c9d6 (patch)
tree5d1221bd675bf7e33c6b53b5e974bd2bf1983756 /src/sched/sched_setparam.c
parentb959d04644d99f27d9f10344e76c079a12bc1ffd (diff)
downloadmusl-61be1cfec1f5da66c68f92a6939e3a38e673c9d6.tar.gz
implement stub versions of sched_*
these actually work, but for now they prohibit actually setting priority levels and report min/max priority as 0.
Diffstat (limited to 'src/sched/sched_setparam.c')
-rw-r--r--src/sched/sched_setparam.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sched/sched_setparam.c b/src/sched/sched_setparam.c
new file mode 100644
index 00000000..07d61aea
--- /dev/null
+++ b/src/sched/sched_setparam.c
@@ -0,0 +1,8 @@
+#include <sched.h>
+#include "syscall.h"
+
+int sched_setparam(pid_t pid, const struct sched_param *param)
+{
+ static const struct sched_param def;
+ return syscall(SYS_sched_setparam, pid, &def);
+}