glibc/sysdeps/unix/sysv/linux/alpha/kernel_sigaction.h

16 lines
354 B
C
Raw Normal View History

1997-01-19 04:54:14 +00:00
/* This is the sigaction struction from the Linux 2.1.20 kernel. */
1997-12-14 22:19:05 +00:00
struct old_kernel_sigaction {
1997-12-28 15:22:52 +00:00
__sighandler_t k_sa_handler;
1997-01-19 04:54:14 +00:00
unsigned long sa_mask;
unsigned int sa_flags;
};
1998-02-24 15:22:07 +00:00
/* This is the sigaction structure from the Linux 2.1.68 kernel. */
struct kernel_sigaction {
__sighandler_t k_sa_handler;
unsigned int sa_flags;
sigset_t sa_mask;
};