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

16 lines
354 B
C
Raw Normal View History

1997-01-19 12:54:14 +08:00
/* This is the sigaction struction from the Linux 2.1.20 kernel. */
1997-12-15 06:19:05 +08:00
struct old_kernel_sigaction {
1997-12-28 23:22:52 +08:00
__sighandler_t k_sa_handler;
1997-01-19 12:54:14 +08:00
unsigned long sa_mask;
unsigned int sa_flags;
};
1998-02-24 23:22:07 +08: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;
};