mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-08 10:20:15 +00:00
8 lines
220 B
C
8 lines
220 B
C
|
/* This is the sigaction structure from the Linux 3.2 kernel. */
|
||
|
struct kernel_sigaction
|
||
|
{
|
||
|
__sighandler_t k_sa_handler;
|
||
|
unsigned long sa_flags;
|
||
|
sigset_t sa_mask; /* mask last for extensibility */
|
||
|
};
|