From 3cc5308ddc45a3c189691c30bcd399132b181d33 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 13 Aug 2021 22:26:26 +0200 Subject: [PATCH] Profiler: Don't include signposts in the samples list --- Userland/DevTools/Profiler/Profile.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Userland/DevTools/Profiler/Profile.cpp b/Userland/DevTools/Profiler/Profile.cpp index f84b01b63f..104af281ca 100644 --- a/Userland/DevTools/Profiler/Profile.cpp +++ b/Userland/DevTools/Profiler/Profile.cpp @@ -105,6 +105,9 @@ void Profile::rebuild_tree() if (!process_filter_contains(event.pid, event.serial)) continue; + if (event.data.has()) + continue; + m_filtered_event_indices.append(event_index); if (auto* malloc_data = event.data.get_pointer(); malloc_data && !live_allocations.contains(malloc_data->ptr))