aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectMemory.cpp
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2024-08-23 09:55:47 -0700
committerAdrian Prantl <aprantl@apple.com>2024-08-23 11:06:01 -0700
commit3c0fba4f2471cacb27d787c7d8f54f21d9dcafae (patch)
tree1358f71aaa271accdd5e311072c09fbc6c0808c5 /lldb/source/Commands/CommandObjectMemory.cpp
parentb7c1be1a7f49539ea644ff3fd8b55f237e37b35e (diff)
downloadllvm-3c0fba4f2471cacb27d787c7d8f54f21d9dcafae.zip
llvm-3c0fba4f2471cacb27d787c7d8f54f21d9dcafae.tar.gz
llvm-3c0fba4f2471cacb27d787c7d8f54f21d9dcafae.tar.bz2
Revert "Revert "[lldb] Extend frame recognizers to hide frames from backtraces (#104523)""
This reverts commit 547917aebd1e79a8929b53f0ddf3b5185ee4df74.
Diffstat (limited to 'lldb/source/Commands/CommandObjectMemory.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectMemory.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp
index 137b1ad..baf5d91 100644
--- a/lldb/source/Commands/CommandObjectMemory.cpp
+++ b/lldb/source/Commands/CommandObjectMemory.cpp
@@ -1570,7 +1570,8 @@ protected:
const bool stop_format = false;
for (auto thread : thread_list) {
- thread->GetStatus(*output_stream, 0, UINT32_MAX, 0, stop_format);
+ thread->GetStatus(*output_stream, 0, UINT32_MAX, 0, stop_format,
+ /*should_filter*/ false);
}
result.SetStatus(eReturnStatusSuccessFinishResult);