[Lldb-commits] [lldb] [lldb][sbdebugger] Match progress category enum bit in Debugger.h (PR #87409)
Chelsea Cassanova via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 10 14:32:45 PDT 2024
================
@@ -1339,6 +1339,14 @@ enum AddressMaskRange {
eAddressMaskRangeAll = eAddressMaskRangeAny,
};
+/// Used by the debugger to indicate which events are being broadcasted.
+enum DebuggerBroadcastBit {
+ eBroadcastBitProgress = (1 << 0),
+ eBroadcastBitWarning = (1 << 1),
+ eBroadcastBitError = (1 << 2),
+ eBroadcastBitProgressCategory = (1 << 4),
----------------
chelcassanova wrote:
Oh yeah, I guess since this is in `lldb-enumerations` it doesn't have to match the ones in Debugger.h anymore.
https://github.com/llvm/llvm-project/pull/87409
More information about the lldb-commits
mailing list