Skip to content

Commit d699e23

Browse files
committed
common: MemoryModel: do not discard memory mappings marked [stack]
Signed-off-by: Ronen Friedman <[email protected]>
1 parent 705e60f commit d699e23

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/common/MemoryModel.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,6 @@ tl::expected<int64_t, std::string> MemoryModel::get_mapped_heap()
8989
continue;
9090
}
9191

92-
if (the_rest.ends_with("[stack]")) {
93-
// should we really exclude the stack?
94-
continue;
95-
}
96-
9792
std::string_view final_token{the_rest.begin() + sizeof("00000000 00:00 0") - 1,
9893
the_rest.end()};
9994
if (final_token.size() < 3 ||

0 commit comments

Comments
 (0)