aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/options/linux/generic/sched.cpp
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/options/linux/generic/sched.cpp
parentbd5969fc876a10b18613302db7087ef3c40f18e1 (diff)
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/linux/generic/sched.cpp')
-rw-r--r--lib/mlibc/options/linux/generic/sched.cpp50
1 files changed, 0 insertions, 50 deletions
diff --git a/lib/mlibc/options/linux/generic/sched.cpp b/lib/mlibc/options/linux/generic/sched.cpp
deleted file mode 100644
index 760a9f5..0000000
--- a/lib/mlibc/options/linux/generic/sched.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-#include <bits/ensure.h>
-#include <errno.h>
-#include <sched.h>
-
-#include <mlibc/linux-sysdeps.hpp>
-#include <mlibc/posix-sysdeps.hpp>
-
-int sched_getcpu(void) {
- MLIBC_CHECK_OR_ENOSYS(mlibc::sys_getcpu, -1);
- int cpu;
- if(int e = mlibc::sys_getcpu(&cpu); e) {
- errno = e;
- return -1;
- }
- return cpu;
-}
-
-int setns(int, int) {
- __ensure(!"Not implemented");
- __builtin_unreachable();
-}
-
-int sched_getscheduler(pid_t) {
- __ensure(!"Not implemented");
- __builtin_unreachable();
-}
-
-int sched_getaffinity(pid_t pid, size_t cpusetsize, cpu_set_t *mask) {
- MLIBC_CHECK_OR_ENOSYS(mlibc::sys_getaffinity, -1);
- if(int e = mlibc::sys_getaffinity(pid, cpusetsize, mask); e) {
- errno = e;
- return -1;
- }
- return 0;
-}
-
-int unshare(int) {
- __ensure(!"Not implemented");
- __builtin_unreachable();
-}
-
-int sched_setaffinity(pid_t, size_t, const cpu_set_t *) {
- __ensure(!"Not implemented");
- __builtin_unreachable();
-}
-
-int clone(int (*)(void *), void *, int, void *, ...) {
- __ensure(!"Not implemented");
- __builtin_unreachable();
-}