taglinefilesource code
elf_prot232fs/binfmt_elf.cint elf_prot = 0;
elf_prot234fs/binfmt_elf.cif (eppnt->p_flags & PF_R) elf_prot =  PROT_READ;
elf_prot235fs/binfmt_elf.cif (eppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
elf_prot236fs/binfmt_elf.cif (eppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
elf_prot245fs/binfmt_elf.celf_prot,
elf_prot581fs/binfmt_elf.cint elf_prot = (elf_ppnt->p_flags & PF_R) ? PROT_READ : 0;
elf_prot582fs/binfmt_elf.cif (elf_ppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
elf_prot583fs/binfmt_elf.cif (elf_ppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
elf_prot587fs/binfmt_elf.celf_prot,