[Lldb-commits] [lldb] Add SBDebugger:: AddNotificationCallback API (PR #111206)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 8 13:08:08 PDT 2024
================
@@ -1362,6 +1362,12 @@ enum Severity {
eSeverityInfo, // Equivalent to Remark used in clang.
};
+enum NotificationType {
+ eDebuggerWillBeCreated = (1 << 0),
----------------
clayborg wrote:
Should this be `eDebuggerWasCreated` to indicate that a debugger object was created and that the user can do something with it?
https://github.com/llvm/llvm-project/pull/111206
More information about the lldb-commits
mailing list