[Lldb-commits] [lldb] [LLDB][Telemetry]Define DebuggerTelemetryInfo and related methods (PR #127696)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 27 12:55:54 PST 2025


================
@@ -41,6 +42,7 @@ struct LLDBBaseTelemetryInfo : public llvm::telemetry::TelemetryInfo {
   std::optional<SteadyTimePoint> end_time;
   // TBD: could add some memory stats here too?
 
+  uint64_t debugger_id = LLDB_INVALID_UID;
----------------
JDevlieghere wrote:

```suggestion
  lldb::user_id_t debugger_id = LLDB_INVALID_UID;
```

or 

```suggestion
  std::optional<lldb::user_id_t> debugger_id;
```

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


More information about the lldb-commits mailing list