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

Lines Matching refs:rc

48 	long rc;
50 rc = syscall(__NR_prctl, PR_SET_TSC, 0);
51 printf("prctl(PR_SET_TSC, 0 /* PR_TSC_??? */) = %s\n", sprintrc(rc));
53 rc = syscall(__NR_prctl, PR_SET_TSC, bogus_tsc);
55 (unsigned int) bogus_tsc, sprintrc(rc));
57 rc = syscall(__NR_prctl, PR_SET_TSC, PR_TSC_SIGSEGV);
58 printf("prctl(PR_SET_TSC, PR_TSC_SIGSEGV) = %s\n", sprintrc(rc));
60 rc = syscall(__NR_prctl, PR_GET_TSC, NULL);
61 printf("prctl(PR_GET_TSC, NULL) = %s\n", sprintrc(rc));
63 rc = syscall(__NR_prctl, PR_GET_TSC, tsc + 1);
64 printf("prctl(PR_GET_TSC, %p) = %s\n", tsc + 1, sprintrc(rc));
66 rc = syscall(__NR_prctl, PR_GET_TSC, tsc);
67 if (rc)
68 printf("prctl(PR_GET_TSC, %p) = %s\n", tsc, sprintrc(rc));
71 sprintrc(rc));