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

Packit 6c4009
/* We have a separate header file here because we do not support
Packit 6c4009
   SA_RESTORER on hppa. */
Packit 6c4009
Packit 6c4009
/* This is the sigaction struction from the Linux 2.1.20 kernel.  */
Packit 6c4009
/* Blah.  This is bogus.  We don't ever use it. */
Packit 6c4009
struct old_kernel_sigaction {
Packit 6c4009
	__sighandler_t k_sa_handler;
Packit 6c4009
	unsigned long sa_mask;
Packit 6c4009
	unsigned long sa_flags;
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
/* This is the sigaction structure from the Linux 2.1.68 kernel.  */
Packit 6c4009
Packit 6c4009
struct kernel_sigaction {
Packit 6c4009
	__sighandler_t k_sa_handler;
Packit 6c4009
	unsigned long sa_flags;
Packit 6c4009
	sigset_t sa_mask;
Packit 6c4009
};