aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/posix/pthread_schedparam.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-07 17:28:00 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 17:28:32 -0500
commitbd5969fc876a10b18613302db7087ef3c40f18e1 (patch)
tree7c2b8619afe902abf99570df2873fbdf40a4d1a1 /lib/mlibc/tests/posix/pthread_schedparam.c
parenta95b38b1b92b172e6cc4e8e56a88a30cc65907b0 (diff)
lib: Add mlibc
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/tests/posix/pthread_schedparam.c')
-rw-r--r--lib/mlibc/tests/posix/pthread_schedparam.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/mlibc/tests/posix/pthread_schedparam.c b/lib/mlibc/tests/posix/pthread_schedparam.c
new file mode 100644
index 0000000..dde70fb
--- /dev/null
+++ b/lib/mlibc/tests/posix/pthread_schedparam.c
@@ -0,0 +1,32 @@
+#include <assert.h>
+#include <errno.h>
+#include <pthread.h>
+#include <stdlib.h>
+
+int main() {
+ struct sched_param param = {
+ .sched_priority = 100,
+ };
+
+ int policy = 0xDEADBEEF;
+
+ int ret = pthread_getschedparam(pthread_self(), &policy, &param);
+ assert(policy == SCHED_OTHER);
+ assert(!ret);
+
+ param.sched_priority = 10;
+
+ ret = pthread_setschedparam(pthread_self(), SCHED_FIFO, &param);
+ assert(!ret || ret == EPERM);
+
+ if(ret == EPERM) {
+ exit(0);
+ }
+
+ param.sched_priority = 0xDEADBEEF;
+
+ ret = pthread_getschedparam(pthread_self(), &policy, &param);
+ assert(policy == SCHED_FIFO);
+ assert(param.sched_priority == 10);
+ assert(!ret);
+}