We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c818124 commit 28ead99Copy full SHA for 28ead99
ui/src/plugins/dev.perfetto.ProcessThreadGroups/index.ts
@@ -132,7 +132,7 @@ export default class implements PerfettoPlugin {
132
133
// Set the group for all kernel threads (including kthreadd itself).
134
for (; it.valid(); it.next()) {
135
- const {utid} = it;
+ const {utid, upid} = it;
136
137
const threadGroup = new TrackNode({
138
uri: `thread${utid}`,
@@ -141,6 +141,7 @@ export default class implements PerfettoPlugin {
141
headless: true,
142
});
143
kernelThreadsGroup.addChildInOrder(threadGroup);
144
+ this.processGroups.set(upid, threadGroup);
145
this.threadGroups.set(utid, threadGroup);
146
}
147
0 commit comments