[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 22/40] bsd-user: Add host signals to the build
|
From: |
Warner Losh |
|
Subject: |
[PATCH v3 22/40] bsd-user: Add host signals to the build |
|
Date: |
Fri, 28 Jan 2022 16:27:47 -0700 |
Start to add the host signal functionality to the build.
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
bsd-user/signal.c | 1 +
meson.build | 1 +
2 files changed, 2 insertions(+)
diff --git a/bsd-user/signal.c b/bsd-user/signal.c
index ad8437a8bfb..f3e020e004a 100644
--- a/bsd-user/signal.c
+++ b/bsd-user/signal.c
@@ -22,6 +22,7 @@
#include "qemu.h"
#include "signal-common.h"
#include "hw/core/tcg-cpu-ops.h"
+#include "host-signal.h"
/*
* Stubbed out routines until we merge signal support from bsd-user
diff --git a/meson.build b/meson.build
index 5dbc9a7a365..155403d44f4 100644
--- a/meson.build
+++ b/meson.build
@@ -2947,6 +2947,7 @@ foreach target : target_dirs
if 'CONFIG_BSD_USER' in config_target
base_dir = 'bsd-user'
target_inc += include_directories('bsd-user/' / targetos)
+ target_inc += include_directories('bsd-user/host/' / host_arch)
dir = base_dir / abi
arch_srcs += files(dir / 'signal.c', dir / 'target_arch_cpu.c')
endif
--
2.33.1
- [PATCH v3 14/40] bsd-user/arm/target_arch_cpu.h: Use force_sig_fault for EXCP_UDEF, (continued)
- [PATCH v3 14/40] bsd-user/arm/target_arch_cpu.h: Use force_sig_fault for EXCP_UDEF, Warner Losh, 2022/01/28
- [PATCH v3 21/40] bsd-user/host/x86_64/host-signal.h: Implement host_signal_*, Warner Losh, 2022/01/28
- [PATCH v3 20/40] bsd-user/host/i386/host-signal.h: Implement host_signal_*, Warner Losh, 2022/01/28
- [PATCH v3 18/40] bsd-user/signal.c: Add si_type argument to queue_signal, Warner Losh, 2022/01/28
- [PATCH v3 35/40] bsd-user/signal.c: implement do_sigreturn, Warner Losh, 2022/01/28
- [PATCH v3 36/40] bsd-user/signal.c: implement do_sigaction, Warner Losh, 2022/01/28
- [PATCH v3 26/40] bsd-user/signal.c: Implement host_signal_handler, Warner Losh, 2022/01/28
- [PATCH v3 24/40] bsd-user/signal.c: host_to_target_siginfo_noswap, Warner Losh, 2022/01/28
- [PATCH v3 25/40] bsd-user/signal.c: Implement rewind_if_in_safe_syscall, Warner Losh, 2022/01/28
- [PATCH v3 17/40] bsd-user/signal.c: Implement signal_init(), Warner Losh, 2022/01/28
- [PATCH v3 22/40] bsd-user: Add host signals to the build,
Warner Losh <=
- [PATCH v3 23/40] bsd-user: Add trace events for bsd-user, Warner Losh, 2022/01/28
- [PATCH v3 28/40] bsd-user/signal.c: Implement dump_core_and_abort, Warner Losh, 2022/01/28
- [PATCH v3 32/40] bsd-user/signal.c: handle_pending_signal, Warner Losh, 2022/01/28
- [PATCH v3 40/40] bsd-user/freebsd/target_os_ucontext.h: Prefer env as arg name for CPUArchState args, Warner Losh, 2022/01/28
- [PATCH v3 39/40] bsd-user: Rename arg name for target_cpu_reset to env, Warner Losh, 2022/01/28
- [PATCH v3 30/40] bsd-user/signal.c: sigset manipulation routines., Warner Losh, 2022/01/28
- [PATCH v3 37/40] bsd-user/signal.c: do_sigaltstack, Warner Losh, 2022/01/28
- [PATCH v3 19/40] bsd-user/host/arm/host-signal.h: Implement host_signal_*, Warner Losh, 2022/01/28
- [PATCH v3 29/40] bsd-user/signal.c: Fill in queue_signal, Warner Losh, 2022/01/28
- [PATCH v3 31/40] bsd-user/signal.c: setup_frame, Warner Losh, 2022/01/28