2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / alpha / kernel_sigaction.h
blob4c35d969cf0a3a050f426e96a7cf1dd241e72187
1 /* This is the sigaction struction from the Linux 2.1.20 kernel. */
3 struct old_kernel_sigaction {
4 __sighandler_t k_sa_handler;
5 unsigned long sa_mask;
6 unsigned int sa_flags;
7 };
9 /* This is the sigaction structure from the Linux 2.1.68 kernel. */
11 struct kernel_sigaction {
12 __sighandler_t k_sa_handler;
13 unsigned int sa_flags;
14 sigset_t sa_mask;