From f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 7 Mar 2024 17:28:52 -0500 Subject: build: Build mlibc + add distclean target Signed-off-by: Ian Moffett --- lib/mlibc/tests/posix/pthread_schedparam.c | 32 ------------------------------ 1 file changed, 32 deletions(-) delete mode 100644 lib/mlibc/tests/posix/pthread_schedparam.c (limited to 'lib/mlibc/tests/posix/pthread_schedparam.c') 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 -#include -#include -#include - -int main() { - struct sched_param param = { - .sched_priority = 100, - }; - - int policy = 0xDEADBEEF; - - int ret = pthread_getschedparam(pthread_self(), &policy, ¶m); - assert(policy == SCHED_OTHER); - assert(!ret); - - param.sched_priority = 10; - - ret = pthread_setschedparam(pthread_self(), SCHED_FIFO, ¶m); - assert(!ret || ret == EPERM); - - if(ret == EPERM) { - exit(0); - } - - param.sched_priority = 0xDEADBEEF; - - ret = pthread_getschedparam(pthread_self(), &policy, ¶m); - assert(policy == SCHED_FIFO); - assert(param.sched_priority == 10); - assert(!ret); -} -- cgit v1.2.3