[Lldb-commits] [lldb] [LLDB][Telemetry]Define DebuggerTelemetryInfo and related methods (PR #127696)
Vy Nguyen via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 28 06:03:01 PST 2025
================
@@ -56,13 +58,38 @@ struct LLDBBaseTelemetryInfo : public llvm::telemetry::TelemetryInfo {
void serialize(llvm::telemetry::Serializer &serializer) const override;
};
+/// Describes the exit status of a debugger.
+struct ExitDescription {
+ int exit_code;
+ std::string description;
+};
+
+struct DebuggerInfo : public LLDBBaseTelemetryInfo {
----------------
oontvoo wrote:
I definitely need this class to be extensible.
Can you clarify what changes are needed to allow this?
https://github.com/llvm/llvm-project/pull/127696
More information about the lldb-commits
mailing list