ucontext_i.sym 892 B

123456789101112131415161718192021222324252627282930
  1. #include <inttypes.h>
  2. #include <signal.h>
  3. #include <stddef.h>
  4. #include <sys/ucontext.h>
  5. SIG_BLOCK
  6. SIG_SETMASK
  7. -- Offsets of the fields in the ucontext_t structure.
  8. #define ucontext(member) offsetof (ucontext_t, member)
  9. #define mcontext(member) ucontext (uc_mcontext.member)
  10. UCONTEXT_FLAGS ucontext (uc_flags)
  11. UCONTEXT_LINK ucontext (uc_link)
  12. UCONTEXT_STACK ucontext (uc_stack)
  13. UCONTEXT_MCONTEXT ucontext (uc_mcontext)
  14. UCONTEXT_SIGMASK ucontext (uc_sigmask)
  15. UCONTEXT_REGSPACE ucontext (uc_regspace)
  16. MCONTEXT_TRAP_NO mcontext (trap_no)
  17. MCONTEXT_ERROR_CODE mcontext (error_code)
  18. MCONTEXT_OLDMASK mcontext (oldmask)
  19. MCONTEXT_ARM_R0 mcontext (arm_r0)
  20. MCONTEXT_ARM_R4 mcontext (arm_r4)
  21. MCONTEXT_ARM_SP mcontext (arm_sp)
  22. MCONTEXT_ARM_LR mcontext (arm_lr)
  23. MCONTEXT_ARM_PC mcontext (arm_pc)
  24. MCONTEXT_ARM_CPSR mcontext (arm_cpsr)
  25. MCONTEXT_FAULT_ADDRESS mcontext (fault_address)