[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 35/37] bsd-user/arm/signal.c: arm get_ucontext_sigreturn
From: |
Warner Losh |
Subject: |
[PATCH v5 35/37] bsd-user/arm/signal.c: arm get_ucontext_sigreturn |
Date: |
Sun, 7 Nov 2021 20:51:34 -0700 |
Update ucontext to implement sigreturn.
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
bsd-user/arm/signal.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/bsd-user/arm/signal.c b/bsd-user/arm/signal.c
index fb6228db6c..1478f008d1 100644
--- a/bsd-user/arm/signal.c
+++ b/bsd-user/arm/signal.c
@@ -185,3 +185,12 @@ abi_long set_mcontext(CPUARMState *env, target_mcontext_t
*mcp, int srflag)
return err;
}
+
+/* Compare to arm/arm/machdep.c sys_sigreturn() */
+abi_long get_ucontext_sigreturn(CPUARMState *env, abi_ulong target_sf,
+ abi_ulong *target_uc)
+{
+ *target_uc = target_sf;
+
+ return 0;
+}
--
2.33.0
- [PATCH v5 05/37] bsd-user/i386/target_arch_signal.h: use new target_os_ucontext.h, (continued)
- [PATCH v5 05/37] bsd-user/i386/target_arch_signal.h: use new target_os_ucontext.h, Warner Losh, 2021/11/07
- [PATCH v5 06/37] bsd-user/i386/target_arch_signal.h: Update mcontext_t to match FreeBSD, Warner Losh, 2021/11/07
- [PATCH v5 27/37] bsd-user/arm/target_arch_elf.h: arm get hwcap, Warner Losh, 2021/11/07
- [PATCH v5 08/37] bsd-user/x86_64/target_arch_signal.h: Remove target_sigcontext, Warner Losh, 2021/11/07
- [PATCH v5 10/37] bsd-user/x86_64/target_arch_signal.h: Fill in mcontext_t, Warner Losh, 2021/11/07
- [PATCH v5 19/37] bsd-user/arm/target_arch_cpu.h: Implement trivial EXCP exceptions, Warner Losh, 2021/11/07
- [PATCH v5 04/37] bsd-user/i386/target_arch_signal.h: Remove target_sigcontext, Warner Losh, 2021/11/07
- [PATCH v5 16/37] bsd-user/arm/target_arch_cpu.h: CPU Loop definitions, Warner Losh, 2021/11/07
- [PATCH v5 02/37] bsd-user/freebsd: Create common target_os_ucontext.h file, Warner Losh, 2021/11/07
- [PATCH v5 28/37] bsd-user/arm/target_arch_elf.h: arm get_hwcap2 impl, Warner Losh, 2021/11/07
- [PATCH v5 35/37] bsd-user/arm/signal.c: arm get_ucontext_sigreturn,
Warner Losh <=
- [PATCH v5 25/37] bsd-user/arm/target_arch_thread.h: Routines to create and switch to a thread, Warner Losh, 2021/11/07
- [PATCH v5 17/37] bsd-user/arm/target_arch_cpu.h: Implement target_cpu_clone_regs, Warner Losh, 2021/11/07
- [PATCH v5 03/37] bsd-user: create a per-arch signal.c file, Warner Losh, 2021/11/07
- [PATCH v5 13/37] bsd-user/arm/target_arch_sysarch.h: Use consistent include guards, Warner Losh, 2021/11/07
- [PATCH v5 14/37] bsd-user/arm/target_syscall.h: Add copyright and update name, Warner Losh, 2021/11/07
- [PATCH v5 30/37] bsd-user/arm/target_arch_signal.h: arm machine context and trapframe for signals, Warner Losh, 2021/11/07
- [PATCH v5 34/37] bsd-user/arm/signal.c: arm set_mcontext, Warner Losh, 2021/11/07
- [PATCH v5 15/37] bsd-user/arm/target_arch_cpu.c: Target specific TLS routines, Warner Losh, 2021/11/07
- [PATCH v5 36/37] bsd-user/freebsd/target_os_ucontext.h: Require TARGET_*CONTEXT_SIZE, Warner Losh, 2021/11/07