~vorlon/ubuntu/natty/eglibc/multiarch

« back to all changes in this revision

Viewing changes to sysdeps/ia64/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 IA-64 the stack grows down.  The register stack is of no concern
26
28
   here.  */
27
29
#define _STACK_GROWS_DOWN       1
28
30
 
 
31
/* Default to an executable stack.  PF_X can be overridden if PT_GNU_STACK is
 
32
 * present, but it is presumed absent.  */
 
33
#define DEFAULT_STACK_PERMS (PF_R|PF_W|PF_X)
 
34
 
29
35
#endif  /* stackinfo.h */