chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / ports / sysdeps / unix / sysv / linux / alpha / kernel_sigaction.h
1 /* This is the sigaction struction from the Linux 2.1.20 kernel.  */
2
3 struct old_kernel_sigaction {
4         __sighandler_t k_sa_handler;
5         unsigned long sa_mask;
6         unsigned int sa_flags;
7 };
8
9 /* This is the sigaction structure from the Linux 2.1.68 kernel.  */
10
11 struct kernel_sigaction {
12         __sighandler_t k_sa_handler;
13         unsigned int sa_flags;
14         sigset_t sa_mask;
15 };