2012-05-03 23:18:26 -04:00
|
|
|
#include <sched.h>
|
2012-11-11 15:38:04 -05:00
|
|
|
#include <errno.h>
|
2012-05-03 23:18:26 -04:00
|
|
|
#include "syscall.h"
|
|
|
|
|
|
|
|
int sched_getscheduler(pid_t pid)
|
|
|
|
{
|
2012-11-11 15:38:04 -05:00
|
|
|
return __syscall_ret(-ENOSYS);
|
2012-05-03 23:18:26 -04:00
|
|
|
}
|