taglinefilesource code
elf_prot220fs/binfmt_elf.cint elf_prot = 0;
elf_prot222fs/binfmt_elf.cif (eppnt->p_flags & PF_R) elf_prot =  PROT_READ;
elf_prot223fs/binfmt_elf.cif (eppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
elf_prot224fs/binfmt_elf.cif (eppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
elf_prot233fs/binfmt_elf.celf_prot,
elf_prot566fs/binfmt_elf.cint elf_prot = (elf_ppnt->p_flags & PF_R) ? PROT_READ : 0;
elf_prot567fs/binfmt_elf.cif (elf_ppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
elf_prot568fs/binfmt_elf.cif (elf_ppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
elf_prot572fs/binfmt_elf.celf_prot,