================ @@ -1559,10 +1560,29 @@ void Target::DidExec() { void Target::SetExecutableModule(ModuleSP &executable_sp, LoadDependentFiles load_dependent_files) { + telemetry::ScopedDispatcher<telemetry::ExecModuleInfo> helper(&m_debugger); Log *log = GetLog(LLDBLog::Target); ClearModules(false); if (executable_sp) { + lldb::pid_t pid; + if (ProcessSP proc = GetProcessSP()) + pid = proc->GetID(); ---------------- JDevlieghere wrote:
```suggestion lldb::pid_t pid = LLDB_INVALID_PROCESS_ID; if (ProcessSP proc = GetProcessSP()) pid = proc->GetID(); ``` https://github.com/llvm/llvm-project/pull/127834 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits