ucontext_i.sym 739 B

123456789101112131415161718192021222324252627
  1. #include <stddef.h>
  2. #include <signal.h>
  3. #include <sys/ucontext.h>
  4. --
  5. SIG_BLOCK
  6. SIG_SETMASK
  7. _NSIG8 (_NSIG / 8)
  8. #define ucontext(member) offsetof (ucontext_t, member)
  9. #define mcontext(member) ucontext (uc_mcontext.member)
  10. #define mreg(reg) mcontext (nds32_##reg)
  11. UCONTEXT_GREGS mcontext (nds32_r0)
  12. #ifdef __NDS32_ABI_2FP_PLUS__
  13. UCONTEXT_FDREGS mcontext (fpu.fd_regs)
  14. #endif
  15. UCONTEXT_PC mcontext (nds32_ipc)
  16. UCONTEXT_FLAGS ucontext (uc_flags)
  17. UCONTEXT_LINK ucontext (uc_link)
  18. UCONTEXT_STACK ucontext (uc_stack)
  19. UCONTEXT_MCONTEXT ucontext (uc_mcontext)
  20. UCONTEXT_SIGMASK ucontext (uc_sigmask)