ucontext.h 341 B

1234567891011121314151617
  1. #ifndef _SYS_UCONTEXT_H
  2. #define _SYS_UCONTEXT_H 1
  3. #include <features.h>
  4. #include <signal.h>
  5. #include <bits/sigcontext.h>
  6. typedef struct ucontext
  7. {
  8. unsigned long int uc_flags;
  9. struct ucontext * uc_link;
  10. stack_t uc_stack;
  11. struct sigcontext uc_mcontext;
  12. sigset_t uc_sigmask;
  13. } ucontext_t;
  14. #endif /* sys/ucontext.h */