Home | History | Annotate | Download | only in other

Lines Matching refs:TT

50   return syscall(__NR_ioprio_get, 1, (int)TT.pid);
55 int prio = ((int)TT.class << 13) | (int)TT.level;
57 return syscall(__NR_ioprio_set, 1, (int)TT.pid, prio);
62 if (!TT.pid && !toys.optc) error_exit("Need -p or COMMAND");
70 if (!TT.pid) xexec(toys.optargs);
78 TT.pid = atolx(*toys.optargs);
83 TT.class = (p>>13)&3;
86 TT.pid, classes[TT.class], TT.class, p);
90 for (TT.class = 0; TT.class<4; TT.class++)
91 if (!strcmp(toys.optargs[toys.optc-1], classes[TT.class])) break;
92 if (toys.optc == 3 || TT.class == 4) TT.level = atolx(toys.optargs[1]);
93 else TT.level = 4;
94 TT.class &= 3;