1 #ifndef _KERNEL_SIGACTION_H 2 # define _KERNEL_SIGACTION_H 3 4 /* This is the sigaction structure from the Linux 3.2 kernel. */ 5 struct kernel_sigaction 6 { 7 unsigned int sa_flags; 8 __sighandler_t k_sa_handler; 9 sigset_t sa_mask; 10 }; 11 12 #endif 13