[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 09/40] bsd-user/signal-common.h: Move signal functions prototy
|
From: |
Warner Losh |
|
Subject: |
[PATCH v2 09/40] bsd-user/signal-common.h: Move signal functions prototypes to here |
|
Date: |
Mon, 24 Jan 2022 18:29:16 -0700 |
Signed-off-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/qemu.h | 8 --------
bsd-user/signal-common.h | 6 ++++++
2 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 671b26f00cc..99c37fc9942 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -199,14 +199,6 @@ print_openbsd_syscall(int num,
void print_openbsd_syscall_ret(int num, abi_long ret);
extern int do_strace;
-/* signal.c */
-void process_pending_signals(CPUArchState *cpu_env);
-void signal_init(void);
-long do_sigreturn(CPUArchState *env);
-long do_rt_sigreturn(CPUArchState *env);
-void queue_signal(CPUArchState *env, int sig, target_siginfo_t *info);
-abi_long do_sigaltstack(abi_ulong uss_addr, abi_ulong uoss_addr, abi_ulong sp);
-
/* mmap.c */
int target_mprotect(abi_ulong start, abi_ulong len, int prot);
abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
diff --git a/bsd-user/signal-common.h b/bsd-user/signal-common.h
index 6207417d39e..f9a9d1e01aa 100644
--- a/bsd-user/signal-common.h
+++ b/bsd-user/signal-common.h
@@ -9,6 +9,12 @@
#ifndef SIGNAL_COMMON_H
#define SIGNAL_COMMON_H
+long do_rt_sigreturn(CPUArchState *env);
+abi_long do_sigaltstack(abi_ulong uss_addr, abi_ulong uoss_addr, abi_ulong sp);
+long do_sigreturn(CPUArchState *env);
void force_sig_fault(int sig, int code, abi_ulong addr);
+void process_pending_signals(CPUArchState *env);
+void queue_signal(CPUArchState *env, int sig, target_siginfo_t *info);
+void signal_init(void);
#endif
--
2.33.1
- Re: [PATCH v2 02/40] bsd-user: Create setup_sigframe_arch to setup sigframe context, (continued)
- [PATCH v2 04/40] bsd-user/arm/signal.c: get_mcontext should zero vfp data, Warner Losh, 2022/01/24
- [PATCH v2 05/40] bsd-user: Remove vestiges of signal queueing code, Warner Losh, 2022/01/24
- [PATCH v2 06/40] bsd-user: Bring in docs from linux-user for signal_pending, Warner Losh, 2022/01/24
- [PATCH v2 07/40] bsd-user/arm/target_arch_cpu.h: Move EXCP_ATOMIC to match linux-user, Warner Losh, 2022/01/24
- [PATCH v2 08/40] bsd-user/signal.c: implement force_sig_fault, Warner Losh, 2022/01/24
- [PATCH v2 09/40] bsd-user/signal-common.h: Move signal functions prototypes to here,
Warner Losh <=
- [PATCH v2 10/40] bsd-user/signal.c: Implement cpu_loop_exit_sigsegv, Warner Losh, 2022/01/24
- [PATCH v2 14/40] bsd-user/arm/target_arch_cpu.h: Use force_sig_fault for EXCP_UDEF, Warner Losh, 2022/01/24
- [PATCH v2 16/40] bsd-user/signal.c: implement abstract target / host signal translation, Warner Losh, 2022/01/24
- [PATCH v2 18/40] bsd-user/signal.c: Add si_type argument to queue_signal, Warner Losh, 2022/01/24
- [PATCH v2 13/40] bsd-user/arm/target_arch_cpu.h: Correct code pointer, Warner Losh, 2022/01/24