diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2021-09-08 16:43:59 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2021-09-13 20:35:44 +0200 |
commit | 2113aed687cb0b84ad512c440c1edf6eea8fcde2 (patch) | |
tree | 64b1f8c511808f9ab5a98b645a861ae144244683 /linux-user/s390x/cpu_loop.c | |
parent | a44d57a3b9aef9691402560de5da3c03cadd16e5 (diff) | |
download | qemu-2113aed687cb0b84ad512c440c1edf6eea8fcde2.zip qemu-2113aed687cb0b84ad512c440c1edf6eea8fcde2.tar.gz qemu-2113aed687cb0b84ad512c440c1edf6eea8fcde2.tar.bz2 |
linux-user: Split signal-related prototypes into signal-common.h
Split the signal related prototypes into the existing header file
signal-common.h, and include it in those places that now require it.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210908154405.15417-4-peter.maydell@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/s390x/cpu_loop.c')
-rw-r--r-- | linux-user/s390x/cpu_loop.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/s390x/cpu_loop.c b/linux-user/s390x/cpu_loop.c index 6a69a6d..ae70f63 100644 --- a/linux-user/s390x/cpu_loop.c +++ b/linux-user/s390x/cpu_loop.c @@ -21,6 +21,7 @@ #include "qemu-common.h" #include "qemu.h" #include "cpu_loop-common.h" +#include "signal-common.h" /* s390x masks the fault address it reports in si_addr for SIGSEGV and SIGBUS */ #define S390X_FAIL_ADDR_MASK -4096LL |