diff options
Diffstat (limited to 'sysdeps/m68k/stackinfo.h')
-rw-r--r-- | sysdeps/m68k/stackinfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/m68k/stackinfo.h b/sysdeps/m68k/stackinfo.h index 7a757df..74c0af5 100644 --- a/sysdeps/m68k/stackinfo.h +++ b/sysdeps/m68k/stackinfo.h @@ -26,9 +26,9 @@ /* On m68k the stack grows down. */ #define _STACK_GROWS_DOWN 1 -/* Default to an executable stack. PF_X can be overridden if PT_GNU_STACK +/* Default to an executable stack. PROT_EXEC can be overridden if PT_GNU_STACK is present, but it is presumed absent. */ -#define DEFAULT_STACK_PERMS (PF_R|PF_W|PF_X) +#define DEFAULT_STACK_PROT_PERMS (PROT_READ|PROT_WRITE|PROT_EXEC) /* Access to the stack pointer. */ #define stackinfo_get_sp() \ |