taglinefilesource code
elf_prot209fs/binfmt_elf.cint elf_prot = 0;
elf_prot211fs/binfmt_elf.cif (eppnt->p_flags & PF_R) elf_prot =  PROT_READ;
elf_prot212fs/binfmt_elf.cif (eppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
elf_prot213fs/binfmt_elf.cif (eppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
elf_prot222fs/binfmt_elf.celf_prot,
elf_prot555fs/binfmt_elf.cint elf_prot = (elf_ppnt->p_flags & PF_R) ? PROT_READ : 0;
elf_prot556fs/binfmt_elf.cif (elf_ppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
elf_prot557fs/binfmt_elf.cif (elf_ppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
elf_prot561fs/binfmt_elf.celf_prot,