Blame sysdeps/unix/sysv/linux/alpha/kernel_sigaction.h

Packit 6c4009
#ifndef _KERNEL_SIGACTION_H
Packit 6c4009
# define _KERNEL_SIGACTION_H
Packit 6c4009
Packit 6c4009
/* This is the sigaction structure from the Linux 3.2 kernel.  */
Packit 6c4009
struct kernel_sigaction
Packit 6c4009
{
Packit 6c4009
  __sighandler_t k_sa_handler;
Packit 6c4009
  unsigned int sa_flags;
Packit 6c4009
  sigset_t sa_mask;
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
#endif