aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2022-01-08 17:37:23 -0700
committerWarner Losh <imp@bsdimp.com>2022-01-28 15:53:41 -0700
commit6ddc1abe0fd1099f807b27306b518752ea3f40e0 (patch)
tree636ab2f5e75445c2dc681b9fb8c5f8f1d6c619b1 /meson.build
parent85fc1b5dbf893254471809eef8ec773bb29d4f48 (diff)
downloadqemu-6ddc1abe0fd1099f807b27306b518752ea3f40e0.zip
qemu-6ddc1abe0fd1099f807b27306b518752ea3f40e0.tar.gz
qemu-6ddc1abe0fd1099f807b27306b518752ea3f40e0.tar.bz2
bsd-user: Add trace events for bsd-user
Add the bsd-user specific events and infrastructure. Only include the linux-user trace events for linux-user, not bsd-user. Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Kyle Evans <kevans@freebsd.org> Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 155403d..5f43355 100644
--- a/meson.build
+++ b/meson.build
@@ -2458,9 +2458,12 @@ trace_events_subdirs = [
'monitor',
'util',
]
-if have_user
+if have_linux_user
trace_events_subdirs += [ 'linux-user' ]
endif
+if have_bsd_user
+ trace_events_subdirs += [ 'bsd-user' ]
+endif
if have_block
trace_events_subdirs += [
'authz',