aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/sysdeps/ironclad/generic/sched2.cpp
blob: 9699517351e2ff7bb74a9cb9ff5d45a19483a348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}

}