Lines Matching refs:sched
62 checkpris(int sched) in checkpris() argument
69 if ( (smin = sched_get_priority_min(sched)) == -1 && errno) in checkpris()
72 if ( (smax = sched_get_priority_max(sched)) == -1 && errno) in checkpris()
77 sched_text(sched), smin, smax); in checkpris()
83 sched_text(sched), smin, smax); in checkpris()
106 int sched(int ac, char *av[]) in sched() function
112 int sched; in sched() local
234 sched = SCHED_FIFO; in sched()
236 q(__LINE__, sched_setscheduler(0, sched, &rt_param), in sched()
249 (void)sched_is(__LINE__, 0, sched); in sched()
255 q(__LINE__, sched_setscheduler(0, sched, &rt_param), in sched()
292 int main(int argc, char *argv[]) { return sched(argc, argv); } in main()