xref: /linux/arch/mips/include/asm/signal.h (revision 574c4866e33d648520a8bd5bf6f573ea6e554e88)
1384740dcSRalf Baechle /*
2384740dcSRalf Baechle  * This file is subject to the terms and conditions of the GNU General Public
3384740dcSRalf Baechle  * License.  See the file "COPYING" in the main directory of this archive
4384740dcSRalf Baechle  * for more details.
5384740dcSRalf Baechle  *
6384740dcSRalf Baechle  * Copyright (C) 1995, 96, 97, 98, 99, 2003 by Ralf Baechle
7384740dcSRalf Baechle  * Copyright (C) 1999 Silicon Graphics, Inc.
8384740dcSRalf Baechle  */
9384740dcSRalf Baechle #ifndef _ASM_SIGNAL_H
10384740dcSRalf Baechle #define _ASM_SIGNAL_H
11384740dcSRalf Baechle 
1261730c53SDavid Howells #include <uapi/asm/signal.h>
13384740dcSRalf Baechle 
14384740dcSRalf Baechle 
15384740dcSRalf Baechle #ifdef CONFIG_TRAD_SIGNALS
16384740dcSRalf Baechle #define sig_uses_siginfo(ka)	((ka)->sa.sa_flags & SA_SIGINFO)
17384740dcSRalf Baechle #else
18384740dcSRalf Baechle #define sig_uses_siginfo(ka)	(1)
19384740dcSRalf Baechle #endif
20384740dcSRalf Baechle 
21384740dcSRalf Baechle #include <asm/sigcontext.h>
22384740dcSRalf Baechle #include <asm/siginfo.h>
23384740dcSRalf Baechle 
24*574c4866SAl Viro #define __ARCH_HAS_ODD_SIGACTION
25*574c4866SAl Viro 
26384740dcSRalf Baechle #endif /* _ASM_SIGNAL_H */
27