summaryrefslogtreecommitdiffstats
path: root/bsd-user/i386
diff options
context:
space:
mode:
authorWarner Losh2021-11-05 17:55:35 +0100
committerWarner Losh2022-01-08 06:58:51 +0100
commit108fffe53601d46c38efd44d4094bbb211cb73e3 (patch)
treec12b91ac9b6290bb0c9b43961f47a6badbc613d6 /bsd-user/i386
parentbsd-user/x86_64: Move functions into signal.c (diff)
downloadqemu-108fffe53601d46c38efd44d4094bbb211cb73e3.tar.gz
qemu-108fffe53601d46c38efd44d4094bbb211cb73e3.tar.xz
qemu-108fffe53601d46c38efd44d4094bbb211cb73e3.zip
bsd-user/target_os_signal.h: Move signal prototypes to target_os_ucontext.h
Switch to the CPUArchState typedef and move target-provided prototypes to target_os_ucontext.h. Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user/i386')
-rw-r--r--bsd-user/i386/target_arch_signal.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/bsd-user/i386/target_arch_signal.h b/bsd-user/i386/target_arch_signal.h
index 982c7035c7..279dadc22c 100644
--- a/bsd-user/i386/target_arch_signal.h
+++ b/bsd-user/i386/target_arch_signal.h
@@ -88,13 +88,4 @@ struct target_sigframe {
uint32_t __spare__[2];
};
-abi_long set_sigtramp_args(CPUX86State *env, int sig,
- struct target_sigframe *frame,
- abi_ulong frame_addr,
- struct target_sigaction *ka);
-abi_long get_mcontext(CPUX86State *regs, target_mcontext_t *mcp, int flags);
-abi_long set_mcontext(CPUX86State *regs, target_mcontext_t *mcp, int srflag);
-abi_long get_ucontext_sigreturn(CPUX86State *regs, abi_ulong target_sf,
- abi_ulong *target_uc);
-
#endif /* TARGET_ARCH_SIGNAL_H */