Home | History | Annotate | Download | only in tests-m32

Lines Matching refs:rc

69 	long rc;
71 rc = syscall(__NR_ioprio_get, bogus_which, bogus_who);
73 (int) bogus_which, (int) bogus_who, sprintrc(rc));
75 rc = syscall(__NR_ioprio_get, 1, 0);
76 printf("ioprio_get(IOPRIO_WHO_PROCESS, 0) = %s", sprintrc(rc));
78 if (rc >= -1)
79 print_ioprio(rc);
83 rc = syscall(__NR_ioprio_set, 2, 0, 8191);
86 sprintrc(rc));
88 rc = syscall(__NR_ioprio_set, bogus_which, bogus_who, bogus_ioprio);
91 sprintrc(rc));