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:00 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 17:28:32 -0500
commitbd5969fc876a10b18613302db7087ef3c40f18e1 (patch)
tree7c2b8619afe902abf99570df2873fbdf40a4d1a1 /lib/mlibc/options/linux/generic/sched.cpp
parenta95b38b1b92b172e6cc4e8e56a88a30cc65907b0 (diff)
lib: Add mlibc
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, 50 insertions, 0 deletions
diff --git a/lib/mlibc/options/linux/generic/sched.cpp b/lib/mlibc/options/linux/generic/sched.cpp
new file mode 100644
index 0000000..760a9f5
--- /dev/null
+++ b/lib/mlibc/options/linux/generic/sched.cpp
@@ -0,0 +1,50 @@
+#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();
+}