diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/kernel_sigaction.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/kernel_sigaction.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/kernel_sigaction.h b/sysdeps/unix/sysv/linux/kernel_sigaction.h index e3901cfe5c..1ce2be20a1 100644 --- a/sysdeps/unix/sysv/linux/kernel_sigaction.h +++ b/sysdeps/unix/sysv/linux/kernel_sigaction.h @@ -8,3 +8,12 @@ struct old_kernel_sigaction { unsigned long sa_flags; void (*sa_restorer) __P ((void)); }; + +/* This is the sigaction structure from the Linux 2.1.68 kernel. */ + +struct kernel_sigaction { + __sighandler_t k_sa_handler; + unsigned long sa_flags; + void (*sa_restorer) __P ((void)); + sigset_t sa_mask; +}; |