mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:27:45 +00:00
Profiler: Don't include signposts in the samples list
This commit is contained in:
parent
2da817615e
commit
3cc5308ddc
1 changed files with 3 additions and 0 deletions
|
@ -105,6 +105,9 @@ void Profile::rebuild_tree()
|
||||||
if (!process_filter_contains(event.pid, event.serial))
|
if (!process_filter_contains(event.pid, event.serial))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (event.data.has<Event::SignpostData>())
|
||||||
|
continue;
|
||||||
|
|
||||||
m_filtered_event_indices.append(event_index);
|
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))
|
if (auto* malloc_data = event.data.get_pointer<Event::MallocData>(); malloc_data && !live_allocations.contains(malloc_data->ptr))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue