ksigaction.h 361 B

12345678910111213
  1. #include <features.h>
  2. struct k_sigaction {
  3. unsigned flags;
  4. void (*handler)(int);
  5. unsigned long mask[4];
  6. /* The following field is past the end of the structure the
  7. * kernel will read or write, and exists only to avoid having
  8. * mips-specific preprocessor conditionals in sigaction.c. */
  9. void (*restorer)();
  10. };
  11. hidden void __restore(), __restore_rt();