We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7561d03 commit a37c65dCopy full SHA for a37c65d
lldb/include/lldb/lldb-enumerations.h
@@ -1339,6 +1339,14 @@ enum AddressMaskRange {
1339
eAddressMaskRangeAll = eAddressMaskRangeAny,
1340
};
1341
1342
+/// Used by the debugger to indicate which events are being broadcasted.
1343
+enum DebuggerBroadcast {
1344
+ eBroadcastBitProgress = (1 << 0),
1345
+ eBroadcastBitWarning = (1 << 1),
1346
+ eBroadcastBitError = (1 << 2),
1347
+ eBroadcastBitProgressCategory = (1 << 4),
1348
+};
1349
+
1350
} // namespace lldb
1351
1352
#endif // LLDB_LLDB_ENUMERATIONS_H
0 commit comments