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

Lines Matching refs:rc

64 	long rc;
69 rc = syscall(__NR_prctl, PR_GET_TID_ADDRESS, NULL);
70 printf("prctl(PR_GET_TID_ADDRESS, NULL) = %s\n", sprintrc(rc));
72 rc = syscall(__NR_prctl, PR_GET_TID_ADDRESS, bogus_addr);
74 (unsigned long long) bogus_addr, sprintrc(rc));
76 rc = syscall(__NR_prctl, PR_GET_TID_ADDRESS, ptr);
77 if (rc) {
79 ptr, sprintrc(rc));
82 sprintaddr(*ptr), sprintrc(rc));
87 rc = syscall(__NR_prctl, PR_GET_TID_ADDRESS, ptr);
88 if (rc) {
90 ptr, sprintrc(rc));
93 sprintaddr(set_ok ? bogus_addr : *ptr), sprintrc(rc));