blob: 5aa454ed89db0f1e3fc7dc66b6838d5ae0957c4b [file] [log] [blame]
Greg Kroah-Hartman6f52b162017-11-01 15:08:43 +01001/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
David Howells43e40f22012-10-09 09:47:00 +01002/*
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 Howells43e40f22012-10-09 09:47:00 +010014#include <asm-generic/siginfo.h>
15
David Howells43e40f22012-10-09 09:47:00 +010016#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 Howells43e40f22012-10-09 09:47:00 +010031 * SIGFPE si_codes
32 */
Eric W. Biederman80dce5e2017-07-16 19:35:35 -050033#ifdef __KERNEL__
Eric W. Biedermancc731522017-07-16 22:36:59 -050034#define FPE_FIXME 0 /* Broken dup of SI_USER */
Eric W. Biederman80dce5e2017-07-16 19:35:35 -050035#endif /* __KERNEL__ */
David Howells43e40f22012-10-09 09:47:00 +010036
37#endif /* _UAPI_ASM_IA64_SIGINFO_H */