implement dummy pthread_attr_[gs]etschedparam functions
authorRich Felker <dalias@aerifal.cx>
Fri, 11 Mar 2011 14:51:54 +0000 (09:51 -0500)
committerRich Felker <dalias@aerifal.cx>
Fri, 11 Mar 2011 14:51:54 +0000 (09:51 -0500)
for some reason these functions are not shaded by the PS/TPS option in
POSIX, so presumably they are mandatory, even though the functionality
they offer is optional. for now, provide them in case any programs
depend on their existence, but disallow any priority except the
default.

src/thread/pthread_attr_getschedparam.c [new file with mode: 0644]
src/thread/pthread_attr_setschedparam.c [new file with mode: 0644]

diff --git a/src/thread/pthread_attr_getschedparam.c b/src/thread/pthread_attr_getschedparam.c
new file mode 100644 (file)
index 0000000..804f6f0
--- /dev/null
@@ -0,0 +1,7 @@
+#include "pthread_impl.h"
+
+int pthread_attr_getschedparam(const pthread_attr_t *a, struct sched_param *param)
+{
+       param->sched_priority = 0;
+       return 0;
+}
diff --git a/src/thread/pthread_attr_setschedparam.c b/src/thread/pthread_attr_setschedparam.c
new file mode 100644 (file)
index 0000000..b305f2f
--- /dev/null
@@ -0,0 +1,7 @@
+#include "pthread_impl.h"
+
+int pthread_attr_setschedparam(pthread_attr_t *a, const struct sched_param *param)
+{
+       if (param->sched_priority) return ENOTSUP;
+       return 0;
+}