blob: 5bf3648ac4f67e126b9019ec6a0f6d599f2b39a8 [file] [log] [blame]
#include <errno.h>
#include <sched.h>
int sched_rr_get_interval(pid_t pid, struct timespec* ts) {
errno = ENOSYS;
return -1;
}