home *** CD-ROM | disk | FTP | other *** search
- #ifndef _ASM_GENERIC_COMPAT_SIGNAL_H
- #define _ASM_GENERIC_COMPAT_SIGNAL_H
-
- #ifndef __ASSEMBLY__
- #include <linux/compat.h>
-
- typedef compat_uptr_t compat_sighandler_t;
-
- typedef struct compat_sigaltstack {
- compat_uptr_t ss_sp;
- compat_int_t ss_flags;
- compat_size_t ss_size;
- } compat_stack_t;
-
- /* Most things should be clean enough to redefine this at will, if care
- is taken to make libc match. */
-
- struct compat_sigaction {
- compat_sighandler_t sa_handler;
- compat_uint_t sa_flags;
- compat_sigset_t sa_mask; /* mask last for extensibility */
- };
-
- #endif /* !__ASSEMBLY__ */
- #endif /* !_ASM_GENERIC_COMPAT_SIGNAL_H */
-