aboutsummaryrefslogtreecommitdiff
path: root/src/sched/sched_getscheduler.c
blob: 792e4be4b857ebb7d7dad29b0854c5e4a4b6a9b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <sched.h>
#include <errno.h>
#include "syscall.h"

int sched_getscheduler(pid_t pid)
{
	return __syscall_ret(-ENOSYS);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif