[Lldb-commits] [lldb] [lldb] Implement coalescing of disjoint progress events (PR #84854)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 12 13:11:23 PDT 2024
================
@@ -75,45 +81,86 @@ void Progress::ReportProgress() {
}
}
-ProgressManager::ProgressManager() : m_progress_category_map() {}
+ProgressManager::ProgressManager()
+ : m_alarm(std::chrono::milliseconds(100)), m_entries() {}
----------------
clayborg wrote:
Make this a lldb setting instead of hard coding to 100ms?
https://github.com/llvm/llvm-project/pull/84854
More information about the lldb-commits
mailing list