ksigaction.h 144 B

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