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:52 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 18:24:51 -0500
commitf5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch)
tree93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/tests/posix/pthread_schedparam.c
parentbd5969fc876a10b18613302db7087ef3c40f18e1 (diff)
build: Build mlibc + add distclean target
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, 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);
-}