1 #ifndef _BITS_SIGACTION_STRUCT_H
2 #define _BITS_SIGACTION_STRUCT_H
3 
4 /* This is the sigaction struction from the Linux 2.1.20 kernel.  */
5 
6 struct old_kernel_sigaction {
7 	__sighandler_t k_sa_handler;
8 	unsigned long sa_mask;
9 	unsigned int sa_flags;
10 };
11 
12 #endif
13