xref: /openbmc/linux/arch/arm64/include/uapi/asm/signal.h (revision 4262a727621ceadfb38cb90a69804b6ee6be746e)
1*4262a727SDavid Howells /*
2*4262a727SDavid Howells  * Copyright (C) 2012 ARM Ltd.
3*4262a727SDavid Howells  *
4*4262a727SDavid Howells  * This program is free software; you can redistribute it and/or modify
5*4262a727SDavid Howells  * it under the terms of the GNU General Public License version 2 as
6*4262a727SDavid Howells  * published by the Free Software Foundation.
7*4262a727SDavid Howells  *
8*4262a727SDavid Howells  * This program is distributed in the hope that it will be useful,
9*4262a727SDavid Howells  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10*4262a727SDavid Howells  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11*4262a727SDavid Howells  * GNU General Public License for more details.
12*4262a727SDavid Howells  *
13*4262a727SDavid Howells  * You should have received a copy of the GNU General Public License
14*4262a727SDavid Howells  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15*4262a727SDavid Howells  */
16*4262a727SDavid Howells #ifndef __ASM_SIGNAL_H
17*4262a727SDavid Howells #define __ASM_SIGNAL_H
18*4262a727SDavid Howells 
19*4262a727SDavid Howells /* Required for AArch32 compatibility. */
20*4262a727SDavid Howells #define SA_RESTORER	0x04000000
21*4262a727SDavid Howells 
22*4262a727SDavid Howells #include <asm-generic/signal.h>
23*4262a727SDavid Howells 
24*4262a727SDavid Howells #endif
25