jmpbuf-offsets.h 348 B

123456789101112131415161718
  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. #define JB_REGS 0
  7. #define JB_PC 32
  8. #define JB_SP 36
  9. #define JB_FP 40
  10. #define JB_GP 44
  11. #define JB_FPREGS 48
  12. #if defined __UCLIBC_HAS_FPU__
  13. # define JB_SIZE 304
  14. #else
  15. # define JB_SIZE 48
  16. #endif