diff --git a/src/thread/pthread_attr_getschedparam.c b/src/thread/pthread_attr_getschedparam.c new file mode 100644 index 00000000..804f6f0f --- /dev/null +++ b/src/thread/pthread_attr_getschedparam.c @@ -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 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; +}