ucontext.h 413 B

1234567891011121314151617
  1. /** Changes made by Tony Kou Lineo Inc. May 2001
  2. *
  3. * Based on: include/m68knommu/ucontext.h
  4. */
  5. #ifndef _BLACKFIN_UCONTEXT_H
  6. #define _BLACKFIN_UCONTEXT_H
  7. struct ucontext {
  8. unsigned long uc_flags; /* the others are necessary */
  9. struct ucontext *uc_link;
  10. stack_t uc_stack;
  11. struct sigcontext uc_mcontext;
  12. sigset_t uc_sigmask; /* mask last for extensibility */
  13. };
  14. #endif /* _BLACKFIN_UCONTEXT_H */