[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 03/36] bsd-user: create a per-arch signal.c file
From: |
Warner Losh |
Subject: |
[PATCH v4 03/36] bsd-user: create a per-arch signal.c file |
Date: |
Thu, 4 Nov 2021 21:18:44 -0600 |
Create a place-holder signal.c file for each of the architectures that
are currently built. In the future, some code that's currently inlined
in target_arch_signal.h will live here.
Signed-off-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/i386/signal.c | 1 +
bsd-user/x86_64/signal.c | 1 +
meson.build | 2 +-
3 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 bsd-user/i386/signal.c
create mode 100644 bsd-user/x86_64/signal.c
diff --git a/bsd-user/i386/signal.c b/bsd-user/i386/signal.c
new file mode 100644
index 0000000000..ac90323365
--- /dev/null
+++ b/bsd-user/i386/signal.c
@@ -0,0 +1 @@
+/* Placeholder for signal.c */
diff --git a/bsd-user/x86_64/signal.c b/bsd-user/x86_64/signal.c
new file mode 100644
index 0000000000..ac90323365
--- /dev/null
+++ b/bsd-user/x86_64/signal.c
@@ -0,0 +1 @@
+/* Placeholder for signal.c */
diff --git a/meson.build b/meson.build
index 26c58123e9..14b0bb2042 100644
--- a/meson.build
+++ b/meson.build
@@ -2888,7 +2888,7 @@ foreach target : target_dirs
base_dir = 'bsd-user'
target_inc += include_directories('bsd-user/' / targetos)
dir = base_dir / abi
- arch_srcs += files(dir / 'target_arch_cpu.c')
+ arch_srcs += files(dir / 'signal.c', dir / 'target_arch_cpu.c')
endif
target_inc += include_directories(
base_dir,
--
2.33.0
- [PATCH v4 00/36] bsd-user: arm (32-bit) support, Warner Losh, 2021/11/04
- [PATCH v4 02/36] bsd-user/freebsd: Create common target_os_ucontext.h file, Warner Losh, 2021/11/04
- [PATCH v4 07/36] bsd-user/i386: Move the inlines into signal.c, Warner Losh, 2021/11/04
- [PATCH v4 03/36] bsd-user: create a per-arch signal.c file,
Warner Losh <=
- [PATCH v4 06/36] bsd-user/i386/target_arch_signal.h: Update mcontext_t to match FreeBSD, Warner Losh, 2021/11/04
- [PATCH v4 04/36] bsd-user/i386/target_arch_signal.h: Remove target_sigcontext, Warner Losh, 2021/11/04
- [PATCH v4 08/36] bsd-user/x86_64/target_arch_signal.h: Remove target_sigcontext, Warner Losh, 2021/11/04
- [PATCH v4 10/36] bsd-user/x86_64/target_arch_signal.h: Fill in mcontext_t, Warner Losh, 2021/11/04
- [PATCH v4 16/36] bsd-user/arm/target_arch_cpu.h: Implement target_cpu_clone_regs, Warner Losh, 2021/11/04
- [PATCH v4 17/36] bsd-user/arm/target_arch_cpu.h: Dummy target_cpu_loop implementation, Warner Losh, 2021/11/04
- [PATCH v4 14/36] bsd-user/arm/target_arch_cpu.c: Target specific TLS routines, Warner Losh, 2021/11/04