[Lldb-commits] [lldb] [LLDB] Add external progress bit category (PR #120171)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Dec 17 08:28:29 PST 2024


================
@@ -1357,6 +1357,7 @@ enum DebuggerBroadcastBit {
   eBroadcastBitError = (1 << 2),
   eBroadcastSymbolChange = (1 << 3),
   eBroadcastBitProgressCategory = (1 << 4),
+  eBroadcastBitExternalProgressCategory = (1 << 5),
----------------
JDevlieghere wrote:

You'll also need to add a `eBroadcastExternalBitProgress` unless you only ever want to listen for aggregated progress events (which is the difference between `eBroadcastBitProgressCategory` and `eBroadcastBitProgress`).  

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


More information about the lldb-commits mailing list