Update.
[glibc.git] / sysdeps / unix / sysv / linux / kernel_sigaction.h
blob1ce2be20a1b18cc82bb3ab2bd7de703e25543b8a
1 /* This is the sigaction structure from the Linux 2.1.20 kernel. */
3 #define HAVE_SA_RESTORER
5 struct old_kernel_sigaction {
6 __sighandler_t k_sa_handler;
7 unsigned long sa_mask;
8 unsigned long sa_flags;
9 void (*sa_restorer) __P ((void));
12 /* This is the sigaction structure from the Linux 2.1.68 kernel. */
14 struct kernel_sigaction {
15 __sighandler_t k_sa_handler;
16 unsigned long sa_flags;
17 void (*sa_restorer) __P ((void));
18 sigset_t sa_mask;