Profiler: Don't include signposts in the samples list

This commit is contained in:
Andreas Kling 2021-08-13 22:26:26 +02:00
commit 3cc5308ddc
Notes: sideshowbarker 2024-07-18 07:00:28 +09:00

View file

@ -105,6 +105,9 @@ void Profile::rebuild_tree()
if (!process_filter_contains(event.pid, event.serial))
continue;
if (event.data.has<Event::SignpostData>())
continue;
m_filtered_event_indices.append(event_index);
if (auto* malloc_data = event.data.get_pointer<Event::MallocData>(); malloc_data && !live_allocations.contains(malloc_data->ptr))