ksigaction.h 373 B

12345678910111213
  1. #include <features.h>
  2. /* This is the structure used for the rt_sigaction syscall on most archs,
  3. * but it can be overridden by a file with the same name in the top-level
  4. * arch dir for a given arch, if necessary. */
  5. struct k_sigaction {
  6. void (*handler)(int);
  7. unsigned long flags;
  8. void (*restorer)(void);
  9. unsigned mask[2];
  10. };
  11. hidden void __restore(), __restore_rt();