jmpbuf-offsets.h 423 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  3. *
  4. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  5. */
  6. #include <features.h>
  7. #define JB_R16 0
  8. #define JB_R17 1
  9. #define JB_R18 2
  10. #define JB_R19 3
  11. #define JB_R20 4
  12. #define JB_R21 5
  13. #define JB_R22 6
  14. #define JB_FP 7
  15. #define JB_RA 8
  16. #define JB_SP 9
  17. #ifdef __UCLIBC_HAS_FPU__
  18. # define JB_SIZE 304
  19. #else
  20. # define JB_SIZE 48
  21. #endif