From a4537af5d2ff1c39246c943d900c0f5dd0e14739 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Wed, 6 Oct 2021 15:52:01 -0400 Subject: [PATCH] Fix profile example launch file Signed-off-by: Christophe Bedard --- tracetools_analysis/launch/profile.launch.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tracetools_analysis/launch/profile.launch.py b/tracetools_analysis/launch/profile.launch.py index 2ba34db..0c97575 100644 --- a/tracetools_analysis/launch/profile.launch.py +++ b/tracetools_analysis/launch/profile.launch.py @@ -36,9 +36,10 @@ def generate_launch_description(): events_kernel=[ 'sched_switch', ], - context_names=[ - 'ip', - ] + DEFAULT_CONTEXT, + context_names={ + 'kernel': DEFAULT_CONTEXT, + 'userspace': DEFAULT_CONTEXT + ['ip'], + }, ), Node( package='test_tracetools',