diff options
author | Laurent Vivier | 2018-05-29 21:42:00 +0200 |
---|---|---|
committer | Laurent Vivier | 2018-06-04 01:30:44 +0200 |
commit | 9850f9f63acb44724138a2b89b07ea4f6b3d2ba0 (patch) | |
tree | 7b93dc56fa31b54b2d910a61322aeda972148f8e /linux-user/x86_64 | |
parent | linux-user: move sparc/sparc64 fcntl definitions to sparc/target_fcntl.h (diff) | |
download | qemu-9850f9f63acb44724138a2b89b07ea4f6b3d2ba0.tar.gz qemu-9850f9f63acb44724138a2b89b07ea4f6b3d2ba0.tar.xz qemu-9850f9f63acb44724138a2b89b07ea4f6b3d2ba0.zip |
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/x86_64')
-rw-r--r-- | linux-user/x86_64/target_signal.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/linux-user/x86_64/target_signal.h b/linux-user/x86_64/target_signal.h index 6b01b5acb7..be054d1e59 100644 --- a/linux-user/x86_64/target_signal.h +++ b/linux-user/x86_64/target_signal.h @@ -1,8 +1,6 @@ #ifndef X86_64_TARGET_SIGNAL_H #define X86_64_TARGET_SIGNAL_H -#include "cpu.h" - /* this struct defines a stack used during syscall handling */ typedef struct target_sigaltstack { @@ -21,8 +19,4 @@ typedef struct target_sigaltstack { #define TARGET_MINSIGSTKSZ 2048 #define TARGET_SIGSTKSZ 8192 -static inline abi_ulong get_sp_from_cpustate(CPUX86State *state) -{ - return state->regs[R_ESP]; -} #endif /* X86_64_TARGET_SIGNAL_H */ |