~vorlon/ubuntu/natty/eglibc/multiarch

« back to all changes in this revision

Viewing changes to ports/sysdeps/arm/stackinfo.h

  • Committer: Steve Langasek
  • Date: 2011-02-18 21:18:44 UTC
  • mfrom: (103.1.7 eglibc)
  • Revision ID: steve.langasek@linaro.org-20110218211844-lodmi8b1qhyq3f3x
Tags: 2.13~pre1-0ubuntu1+multiarch.1
merge from natty

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2001 Free Software Foundation, Inc.
 
1
/* Copyright (C) 2001, 2010 Free Software Foundation, Inc.
2
2
   This file is part of the GNU C Library.
3
3
 
4
4
   The GNU C Library is free software; you can redistribute it and/or
22
22
#ifndef _STACKINFO_H
23
23
#define _STACKINFO_H    1
24
24
 
 
25
#include <elf.h>
 
26
 
25
27
/* On Arm the stack grows down.  */
26
28
#define _STACK_GROWS_DOWN       1
27
29
 
 
30
/* Default to an executable stack.  PF_X can be overridden if PT_GNU_STACK is
 
31
 * present, but it is presumed absent.  */
 
32
#define DEFAULT_STACK_PERMS (PF_R|PF_W|PF_X)
 
33
 
28
34
#endif  /* stackinfo.h */