Greg Kroah-Hartman | 6f52b16 | 2017-11-01 15:08:43 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ |
David Howells | 43e40f2 | 2012-10-09 09:47:00 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Based on <asm-i386/siginfo.h>. |
| 4 | * |
| 5 | * Modified 1998-2002 |
| 6 | * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co |
| 7 | */ |
| 8 | #ifndef _UAPI_ASM_IA64_SIGINFO_H |
| 9 | #define _UAPI_ASM_IA64_SIGINFO_H |
| 10 | |
| 11 | |
| 12 | #define __ARCH_SI_PREAMBLE_SIZE (4 * sizeof(int)) |
| 13 | |
David Howells | 43e40f2 | 2012-10-09 09:47:00 +0100 | [diff] [blame] | 14 | #include <asm-generic/siginfo.h> |
| 15 | |
David Howells | 43e40f2 | 2012-10-09 09:47:00 +0100 | [diff] [blame] | 16 | #define si_imm _sifields._sigfault._imm /* as per UNIX SysV ABI spec */ |
| 17 | #define si_flags _sifields._sigfault._flags |
| 18 | /* |
| 19 | * si_isr is valid for SIGILL, SIGFPE, SIGSEGV, SIGBUS, and SIGTRAP provided that |
| 20 | * si_code is non-zero and __ISR_VALID is set in si_flags. |
| 21 | */ |
| 22 | #define si_isr _sifields._sigfault._isr |
| 23 | |
| 24 | /* |
| 25 | * Flag values for si_flags: |
| 26 | */ |
| 27 | #define __ISR_VALID_BIT 0 |
| 28 | #define __ISR_VALID (1 << __ISR_VALID_BIT) |
| 29 | |
| 30 | /* |
David Howells | 43e40f2 | 2012-10-09 09:47:00 +0100 | [diff] [blame] | 31 | * SIGFPE si_codes |
| 32 | */ |
Eric W. Biederman | 80dce5e | 2017-07-16 19:35:35 -0500 | [diff] [blame] | 33 | #ifdef __KERNEL__ |
Eric W. Biederman | cc73152 | 2017-07-16 22:36:59 -0500 | [diff] [blame] | 34 | #define FPE_FIXME 0 /* Broken dup of SI_USER */ |
Eric W. Biederman | 80dce5e | 2017-07-16 19:35:35 -0500 | [diff] [blame] | 35 | #endif /* __KERNEL__ */ |
David Howells | 43e40f2 | 2012-10-09 09:47:00 +0100 | [diff] [blame] | 36 | |
| 37 | #endif /* _UAPI_ASM_IA64_SIGINFO_H */ |