Home | History | Annotate | Download | only in tests

Lines Matching refs:rc

49 	long rc;
51 rc = syscall(__NR_prctl, PR_SET_PDEATHSIG, bogus_signal);
53 (unsigned long long) bogus_signal, sprintrc(rc));
55 rc = syscall(__NR_prctl, PR_SET_PDEATHSIG, SIGINT);
56 printf("prctl(PR_SET_PDEATHSIG, SIGINT) = %s\n", sprintrc(rc));
58 rc = syscall(__NR_prctl, PR_GET_PDEATHSIG, NULL);
59 printf("prctl(PR_GET_PDEATHSIG, NULL) = %s\n", sprintrc(rc));
61 rc = syscall(__NR_prctl, PR_GET_PDEATHSIG, pdeathsig + 1);
63 pdeathsig + 1, sprintrc(rc));
65 rc = syscall(__NR_prctl, PR_GET_PDEATHSIG, pdeathsig);
66 if (rc) {
68 pdeathsig, sprintrc(rc));
71 sprintrc(rc));