summaryrefslogtreecommitdiff
path: root/src/thread/pthread_attr_setschedparam.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_attr_setschedparam.c')
-rw-r--r--src/thread/pthread_attr_setschedparam.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/thread/pthread_attr_setschedparam.c b/src/thread/pthread_attr_setschedparam.c
new file mode 100644
index 00000000..b305f2fa
--- /dev/null
+++ b/src/thread/pthread_attr_setschedparam.c
@@ -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;
+}