ksigaction.h 186 B

12345678910
  1. #include <features.h>
  2. struct k_sigaction {
  3. void (*handler)(int);
  4. unsigned long flags;
  5. void *restorer;
  6. unsigned mask[2];
  7. };
  8. extern hidden unsigned char __restore[], __restore_rt[];