musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/thread/pthread_attr_getschedparam.c 7
-rw-r--r--src/thread/pthread_attr_setschedparam.c 7
2 files changed, 14 insertions, 0 deletions
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;
+}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月04日 11:26:09 +0000

AltStyle によって変換されたページ (->オリジナル) /