aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/posix/pthread_schedparam.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mlibc/tests/posix/pthread_schedparam.c')
-rw-r--r--lib/mlibc/tests/posix/pthread_schedparam.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/mlibc/tests/posix/pthread_schedparam.c b/lib/mlibc/tests/posix/pthread_schedparam.c
deleted file mode 100644
index dde70fb..0000000
--- a/lib/mlibc/tests/posix/pthread_schedparam.c
+++ /dev/null
@@ -1,32 +0,0 @@
-#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);
-}