diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2022-01-07 13:32:27 -0800 |
|---|---|---|
| committer | Laurent Vivier <laurent@vivier.eu> | 2022-01-11 18:40:43 +0100 |
| commit | 0edf34c93ed0cd35be3bb6c67f3044b10dcd29f3 (patch) | |
| tree | b98b1507add01b4179e1193a67d6b900f35d10bf /linux-user/syscall_defs.h | |
| parent | 6ac3bf1f55a007b8ee55b3794d542144615c762e (diff) | |
| download | focaccia-qemu-0edf34c93ed0cd35be3bb6c67f3044b10dcd29f3.tar.gz focaccia-qemu-0edf34c93ed0cd35be3bb6c67f3044b10dcd29f3.zip | |
linux-user/hppa: Set FPE_CONDTRAP for COND
This si_code was changed in 75abf64287cab, for linux 4.17. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220107213243.212806-9-richard.henderson@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/syscall_defs.h')
| -rw-r--r-- | linux-user/syscall_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 510a8c1ab5..f23f0a2178 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -688,6 +688,7 @@ typedef struct target_siginfo { #define TARGET_FPE_FLTINV (7) /* floating point invalid operation */ #define TARGET_FPE_FLTSUB (8) /* subscript out of range */ #define TARGET_FPE_FLTUNK (14) /* undiagnosed fp exception */ +#define TARGET_FPE_CONDTRAP (15) /* trap on condition */ /* * SIGSEGV si_codes |