mips: FIx clone3 implementation (BZ 31325)
[glibc.git] / sysdeps / unix / sysv / linux / mips / kernel_sigaction.h
blobbeef976cc37c73e5930f7c750cfae8c2c83fdfcc
1 #ifndef _KERNEL_SIGACTION_H
2 # define _KERNEL_SIGACTION_H
4 /* This is the sigaction structure from the Linux 3.2 kernel. */
5 struct kernel_sigaction
7 unsigned int sa_flags;
8 __sighandler_t k_sa_handler;
9 sigset_t sa_mask;
12 #endif