blob: dd069e2796273535336f7701896b61cd9f58bcb2 [file] [log] [blame]
#include "tests.h"
#include <sys/syscall.h>
#ifdef __NR_sched_rr_get_interval
# include <stdio.h>
# include <sched.h>
# include <unistd.h>
int
main(void)
{
struct timespec *const tp = tail_alloc(sizeof(struct timespec));
long rc = syscall(__NR_sched_rr_get_interval, -1, tp);
printf("sched_rr_get_interval(-1, %p) = %ld %s (%m)\n",
tp, rc, errno2name());
puts("+++ exited with 0 +++");
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_sched_rr_get_interval")
#endif