================
@@ -1024,6 +1027,8 @@ Status MinidumpFileBuilder::AddMemoryList_32(
     error = AddData(data_up->GetBytes(), bytes_read);
     if (error.Fail())
       return error;
+
+    progress.Increment();
----------------
clayborg wrote:

might be nice to add detail before the ReadMemory above in case the first range 
is huge and give a description:
```
std::string descriotion = ...; // Put string in that give us the memory range 
as a string
process.Increment(1, description);
```

https://github.com/llvm/llvm-project/pull/108309
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to