diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:00 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:32 -0500 |
commit | bd5969fc876a10b18613302db7087ef3c40f18e1 (patch) | |
tree | 7c2b8619afe902abf99570df2873fbdf40a4d1a1 /lib/mlibc/sysdeps/ironclad/generic/sched2.cpp | |
parent | a95b38b1b92b172e6cc4e8e56a88a30cc65907b0 (diff) |
lib: Add mlibc
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/sysdeps/ironclad/generic/sched2.cpp')
-rw-r--r-- | lib/mlibc/sysdeps/ironclad/generic/sched2.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/mlibc/sysdeps/ironclad/generic/sched2.cpp b/lib/mlibc/sysdeps/ironclad/generic/sched2.cpp new file mode 100644 index 0000000..9699517 --- /dev/null +++ b/lib/mlibc/sysdeps/ironclad/generic/sched2.cpp @@ -0,0 +1,20 @@ +#include <sys/syscall.h> +#include <sys/sched2.h> +#include <errno.h> +#include <string.h> + +extern "C" { + +int get_thread_sched(void) { + return 0; +} + +int set_thread_sched(int flags) { + return 0; +} + +int set_deadlines(int runtime, int period) { + return 0; +} + +} |