فهرست منبع

implement dummy pthread_attr_[gs]etschedparam functions

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.
Rich Felker 14 سال پیش
والد
کامیت
243b542382
2فایلهای تغییر یافته به همراه14 افزوده شده و 0 حذف شده
  1. 7 0
      src/thread/pthread_attr_getschedparam.c
  2. 7 0
      src/thread/pthread_attr_setschedparam.c

+ 7 - 0
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;
+}

+ 7 - 0
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;
+}