libsysprof: track which nodes are toplevel

We used to do this, and now we have space for it here as we added the
categorization field.
This commit is contained in:
Christian Hergert
2023-07-20 16:03:37 -07:00
parent dfa893f06a
commit 79c49fca02
3 changed files with 6 additions and 1 deletions

View File

@ -191,6 +191,8 @@ sysprof_callgraph_populate_callers (SysprofCallgraph *self,
g_assert (SYSPROF_IS_CALLGRAPH (self));
g_assert (node != NULL);
node->is_toplevel = TRUE;
for (const SysprofCallgraphNode *iter = node;
iter != NULL;
iter = iter->parent)