Lines Matching refs:PR_SET_SECUREBITS
2 * Check decoding of prctl PR_GET_SECUREBITS/PR_SET_SECUREBITS operations.
35 #if defined __NR_prctl && defined PR_GET_SECUREBITS && defined PR_SET_SECUREBITS
65 prctl(PR_SET_SECUREBITS, 0);
66 printf("prctl(PR_SET_SECUREBITS, 0) = %s\n", errstr);
68 prctl(PR_SET_SECUREBITS, bits1);
69 printf("prctl(PR_SET_SECUREBITS, SECBIT_NOROOT|SECBIT_NOROOT_LOCKED|"
76 prctl(PR_SET_SECUREBITS, bits2);
77 printf("prctl(PR_SET_SECUREBITS, %#llx /* SECBIT_??? */)"
81 prctl(PR_SET_SECUREBITS, bits3);
82 printf("prctl(PR_SET_SECUREBITS, SECBIT_NOROOT|SECBIT_NOROOT_LOCKED|"
104 SKIP_MAIN_UNDEFINED("__NR_prctl && PR_GET_SECUREBITS && PR_SET_SECUREBITS")