diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-05-29 21:42:00 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-06-04 01:30:44 +0200 |
commit | 9850f9f63acb44724138a2b89b07ea4f6b3d2ba0 (patch) | |
tree | 7b93dc56fa31b54b2d910a61322aeda972148f8e /linux-user/syscall_defs.h | |
parent | 995d2004b739a2a8ff60f9a0dda8c53bbdcceccf (diff) | |
download | qemu-9850f9f63acb44724138a2b89b07ea4f6b3d2ba0.zip qemu-9850f9f63acb44724138a2b89b07ea4f6b3d2ba0.tar.gz qemu-9850f9f63acb44724138a2b89b07ea4f6b3d2ba0.tar.bz2 |
linux-user: move get_sp_from_cpustate() to target_cpu.h
Remove useless includes
Fix HPPA include guard.
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Acked-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20180529194207.31503-9-laurent@vivier.eu>
Diffstat (limited to 'linux-user/syscall_defs.h')
-rw-r--r-- | linux-user/syscall_defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index fbf1bf9..85e0d87 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -482,6 +482,8 @@ int do_sigaction(int sig, const struct target_sigaction *act, #define TARGET_SA_RESTORER 0x04000000 #endif +#include "target_signal.h" + #ifdef TARGET_SA_RESTORER #define TARGET_ARCH_HAS_SA_RESTORER 1 #endif |