projects
/
sdk
/
tools
/
heaptrack.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a26be4
)
Exclude stop indices from GUI backtraces.
author
Milian Wolff
<milian.wolff@kdab.com>
Wed, 2 Sep 2015 13:52:27 +0000
(15:52 +0200)
committer
Milian Wolff
<milian.wolff@kdab.com>
Wed, 2 Sep 2015 13:52:27 +0000
(15:52 +0200)
gui/parser.cpp
patch
|
blob
|
history
diff --git
a/gui/parser.cpp
b/gui/parser.cpp
index ab13be01551ef3f28e1fc7f0e7427a47460e2394..7739c260373ef6eb31dce5a5861db633fb79d03e 100644
(file)
--- a/
gui/parser.cpp
+++ b/
gui/parser.cpp
@@
-164,6
+164,9
@@
QVector<RowData> mergeAllocations(const AccumulatedTraceData& data)
it = rows->insert(it, {allocation.allocations, allocation.peak, allocation.leaked, allocation.allocated,
location, nullptr, {}});
}
+ if (data.isStopIndex(ip.functionIndex)) {
+ break;
+ }
traceIndex = trace.parentIndex;
rows = &it->children;
}