diff options
| author | Laurent Vivier | 2018-04-24 21:26:35 +0200 |
|---|---|---|
| committer | Laurent Vivier | 2018-04-30 09:47:47 +0200 |
| commit | cb6ac802efea73605288f5d18e28611cbc97d9d2 (patch) | |
| tree | 4307548dea3fe65605faead8c56256635669bc5e /linux-user/aarch64 | |
| parent | linux-user: move ppc/ppc64 signal.c parts to ppc directory (diff) | |
| download | qemu-cb6ac802efea73605288f5d18e28611cbc97d9d2.tar.gz qemu-cb6ac802efea73605288f5d18e28611cbc97d9d2.tar.xz qemu-cb6ac802efea73605288f5d18e28611cbc97d9d2.zip | |
linux-user: define TARGET_ARCH_HAS_SETUP_FRAME
Instead of calling setup_frame() conditionally to a list of known targets,
define TARGET_ARCH_HAS_SETUP_FRAME if the target provides the function
and call it only if the macro is defined.
Move declarations of setup_frame() and setup_rt_frame() to
linux-user/signal-common.h
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20180424192635.6027-21-laurent@vivier.eu>
Diffstat (limited to 'linux-user/aarch64')
| -rw-r--r-- | linux-user/aarch64/target_signal.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/linux-user/aarch64/target_signal.h b/linux-user/aarch64/target_signal.h index af1f1320e2..0b7ae25120 100644 --- a/linux-user/aarch64/target_signal.h +++ b/linux-user/aarch64/target_signal.h @@ -26,9 +26,5 @@ static inline abi_ulong get_sp_from_cpustate(CPUARMState *state) return state->xregs[31]; } -void setup_frame(int sig, struct target_sigaction *ka, - target_sigset_t *set, CPUARMState *env); -void setup_rt_frame(int sig, struct target_sigaction *ka, - target_siginfo_t *info, target_sigset_t *set, - CPUARMState *env); +#define TARGET_ARCH_HAS_SETUP_FRAME #endif /* AARCH64_TARGET_SIGNAL_H */ |
