|
From: Kenn H. <ke...@us...> - 2004-09-02 19:51:29
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13010/include/linux Modified Files: elf.h Log Message: Merge with 2.6.8 Index: elf.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/linux/elf.h,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- elf.h 28 Jul 2004 22:56:59 -0000 1.22 +++ elf.h 2 Sep 2004 19:51:19 -0000 1.23 @@ -4,6 +4,13 @@ #include <linux/types.h> #include <asm/elf.h> +#ifndef elf_read_implies_exec + /* Executables for which elf_read_implies_exec() returns TRUE will + have the READ_IMPLIES_EXEC personality flag set automatically. + Override in asm/elf.h as needed. */ +# define elf_read_implies_exec(ex, have_pt_gnu_stack) 0 +#endif + /* 32-bit ELF base types. */ typedef __u32 Elf32_Addr; typedef __u16 Elf32_Half; |