ksigaction.h 156 B

12345678
  1. struct k_sigaction {
  2. void (*handler)(int);
  3. unsigned long flags;
  4. void *restorer;
  5. unsigned mask[2];
  6. };
  7. extern unsigned char __restore[], __restore_rt[];