[Lldb-commits] [lldb] [lldb] Reduce the frequency of DWARF index progress reporting (PR #118953)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Fri Dec 6 10:54:23 PST 2024


https://github.com/clayborg commented:

Can we build this feature into the Progress class by calling an accessor? Something like:

```
Progress progress("Manually indexing DWARF", module_desc.GetData(), total_progress);
progress.SetMinimumNotificationTime(std::chrono::milliseconds(10));
```
Then any busy progress dialogs can take advantage of this timing feature?

https://github.com/llvm/llvm-project/pull/118953


More information about the lldb-commits mailing list