[Lldb-commits] [lldb] [lldb] Extend frame recognizers to hide frames from backtraces (PR #104523)
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Mon Aug 19 20:56:29 PDT 2024
================
@@ -123,8 +126,12 @@ class StackFrameRecognizerManager {
lldb::StackFrameRecognizerSP GetRecognizerForFrame(lldb::StackFrameSP frame);
lldb::RecognizedStackFrameSP RecognizeFrame(lldb::StackFrameSP frame);
+ /// Quick way to determine whether the list of recognizers has been modified.
+ uint16_t GetGeneration() const { return m_generation; }
private:
+ void BumpGeneration();
----------------
medismailben wrote:
Can we comment what does the do ?
https://github.com/llvm/llvm-project/pull/104523
More information about the lldb-commits
mailing list