ucontext.h 294 B

123456789101112
  1. #ifndef __ASM_GENERIC_UCONTEXT_H
  2. #define __ASM_GENERIC_UCONTEXT_H
  3. struct ucontext {
  4. unsigned long uc_flags;
  5. struct ucontext *uc_link;
  6. stack_t uc_stack;
  7. struct sigcontext uc_mcontext;
  8. sigset_t uc_sigmask; /* mask last for extensibility */
  9. };
  10. #endif /* __ASM_GENERIC_UCONTEXT_H */