0001
0002 #ifndef _COMPAT_SIGNAL_H
0003 #define _COMPAT_SIGNAL_H
0004
0005 #include <linux/compat.h>
0006 #include <asm/signal.h>
0007
0008 #ifdef CONFIG_COMPAT
0009 struct __new_sigaction32 {
0010 unsigned int sa_handler;
0011 unsigned int sa_flags;
0012 unsigned int sa_restorer;
0013 compat_sigset_t sa_mask;
0014 };
0015
0016 struct __old_sigaction32 {
0017 unsigned int sa_handler;
0018 compat_old_sigset_t sa_mask;
0019 unsigned int sa_flags;
0020 unsigned int sa_restorer;
0021 };
0022 #endif
0023
0024 #endif