(struct kernel_sigaction): Define.
authorUlrich Drepper <drepper@redhat.com>
Tue, 24 Feb 1998 15:22:07 +0000 (15:22 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 24 Feb 1998 15:22:07 +0000 (15:22 +0000)
sysdeps/unix/sysv/linux/alpha/kernel_sigaction.h

index f8c42e0..4c35d96 100644 (file)
@@ -5,3 +5,11 @@ struct old_kernel_sigaction {
        unsigned long sa_mask;
        unsigned int sa_flags;
 };
+
+/* 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;
+};