taglinefilesource code
elf_prot219fs/binfmt_elf.cint elf_prot = 0;
elf_prot221fs/binfmt_elf.cif (eppnt->p_flags & PF_R) elf_prot =  PROT_READ;
elf_prot222fs/binfmt_elf.cif (eppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
elf_prot223fs/binfmt_elf.cif (eppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
elf_prot232fs/binfmt_elf.celf_prot,
elf_prot573fs/binfmt_elf.cint elf_prot = (elf_ppnt->p_flags & PF_R) ? PROT_READ : 0;
elf_prot574fs/binfmt_elf.cif (elf_ppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
elf_prot575fs/binfmt_elf.cif (elf_ppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
elf_prot579fs/binfmt_elf.celf_prot,