Lines Matching refs:toys
28 #include "toys.h"
61 if (toys.optflags&FLAG_m) {
70 if (toys.optflags==FLAG_p && !*toys.optargs) {
84 if (!*toys.optargs) help_exit("no PRIORITY");
85 if (!toys.optargs[1] == !(toys.optflags&FLAG_p))
89 if (-1==(pol = highest_bit(toys.optflags&0x2f))) pol = SCHED_RR;
90 pri = atolx_range(*toys.optargs, sched_get_priority_min(pol),
92 if (toys.optflags&FLAG_R) pol |= SCHED_RESET_ON_FORK;
97 if (*(toys.optargs+1)) xexec(toys.optargs+1);