ucontext_i.sym 388 B

123456789101112131415
  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_SIGMASK ucontext (uc_sigmask)
  11. MCONTEXT_SC_A_0 mcontext (sc_a[0])
  12. MCONTEXT_SC_PC mcontext (sc_pc)