diff options
author | Peter Maydell | 2021-09-08 17:43:59 +0200 |
---|---|---|
committer | Laurent Vivier | 2021-09-13 20:35:44 +0200 |
commit | 2113aed687cb0b84ad512c440c1edf6eea8fcde2 (patch) | |
tree | 64b1f8c511808f9ab5a98b645a861ae144244683 /linux-user/arm | |
parent | linux-user: Split strace prototypes into strace.h (diff) | |
download | qemu-2113aed687cb0b84ad512c440c1edf6eea8fcde2.tar.gz qemu-2113aed687cb0b84ad512c440c1edf6eea8fcde2.tar.xz qemu-2113aed687cb0b84ad512c440c1edf6eea8fcde2.zip |
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/arm')
-rw-r--r-- | linux-user/arm/cpu_loop.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/arm/cpu_loop.c b/linux-user/arm/cpu_loop.c index 69632d15be..5556d38146 100644 --- a/linux-user/arm/cpu_loop.c +++ b/linux-user/arm/cpu_loop.c @@ -22,6 +22,7 @@ #include "qemu.h" #include "elf.h" #include "cpu_loop-common.h" +#include "signal-common.h" #include "semihosting/common-semi.h" #define get_user_code_u32(x, gaddr, env) \ |