diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2022-01-07 13:32:20 -0800 |
|---|---|---|
| committer | Laurent Vivier <laurent@vivier.eu> | 2022-01-11 18:40:43 +0100 |
| commit | d010b8bd93b833dcbe0addf54cbb7d763068e90d (patch) | |
| tree | 7203d76ded64322bb05fc45d7c5c0862ab790547 /linux-user/syscall_defs.h | |
| parent | 64c01c7da449bcafc614b27ecf1325bb08031c84 (diff) | |
| download | focaccia-qemu-d010b8bd93b833dcbe0addf54cbb7d763068e90d.tar.gz focaccia-qemu-d010b8bd93b833dcbe0addf54cbb7d763068e90d.zip | |
linux-user/alpha: Set TRAP_UNK for bugchk and unknown gentrap
These si_codes were changed in 535906c684fca, for linux 4.17. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220107213243.212806-2-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 cca561f622..18bed558fe 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -715,6 +715,7 @@ typedef struct target_siginfo { #define TARGET_TRAP_TRACE (2) /* process trace trap */ #define TARGET_TRAP_BRANCH (3) /* process taken branch trap */ #define TARGET_TRAP_HWBKPT (4) /* hardware breakpoint/watchpoint */ +#define TARGET_TRAP_UNK (5) /* undiagnosed trap */ struct target_rlimit { abi_ulong rlim_cur; |