stackinfo.h 633 B

1234567891011121314151617181920212223
  1. /*
  2. * bits/stackinfo.h -- v850-specific pthread definitions
  3. *
  4. * Copyright (C) 2003 NEC Electronics Corporation
  5. * Copyright (C) 2003 Miles Bader <miles@gnu.org>
  6. *
  7. * This file is subject to the terms and conditions of the GNU Lesser
  8. * General Public License. See the file COPYING.LIB in the main
  9. * directory of this archive for more details.
  10. *
  11. * Written by Miles Bader <miles@gnu.org>
  12. */
  13. /* This file contains a bit of information about the stack allocation
  14. of the processor. */
  15. #ifndef _STACKINFO_H
  16. #define _STACKINFO_H 1
  17. /* On v80 the stack grows down. */
  18. #define _STACK_GROWS_DOWN 1
  19. #endif /* stackinfo.h */