summaryrefslogtreecommitdiffstats
path: root/bsd-user
diff options
context:
space:
mode:
authorWarner Losh2022-01-30 03:39:37 +0100
committerWarner Losh2022-02-26 18:01:38 +0100
commita1ea19481fb2d4db5fcf9b2362a4826efb65b328 (patch)
treea7d84b488a89b3cb8f4412d7ca0be91f6909198c /bsd-user
parentbsd-user/freebsd/os-syscall.c: Move syscall processing here (diff)
downloadqemu-a1ea19481fb2d4db5fcf9b2362a4826efb65b328.tar.gz
qemu-a1ea19481fb2d4db5fcf9b2362a4826efb65b328.tar.xz
qemu-a1ea19481fb2d4db5fcf9b2362a4826efb65b328.zip
bsd-user: Move system call building to os-syscall.c
Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user')
-rw-r--r--bsd-user/freebsd/meson.build1
-rw-r--r--bsd-user/meson.build1
2 files changed, 1 insertions, 1 deletions
diff --git a/bsd-user/freebsd/meson.build b/bsd-user/freebsd/meson.build
index 4b69cca7b9..f87c788e84 100644
--- a/bsd-user/freebsd/meson.build
+++ b/bsd-user/freebsd/meson.build
@@ -1,3 +1,4 @@
bsd_user_ss.add(files(
'os-sys.c',
+ 'os-syscall.c',
))
diff --git a/bsd-user/meson.build b/bsd-user/meson.build
index 8380fa44c2..5243122fc5 100644
--- a/bsd-user/meson.build
+++ b/bsd-user/meson.build
@@ -13,7 +13,6 @@ bsd_user_ss.add(files(
'mmap.c',
'signal.c',
'strace.c',
- 'syscall.c',
'uaccess.c',
))