[lldb] Parse the crashlog only once

Now that we can pass Python objects to the scripted process instance, we
don't need to parse the crashlog twice anymore.

Differential revision: https://reviews.llvm.org/D148063
This commit is contained in:
Jonas Devlieghere
2023-04-11 17:03:49 -07:00
parent 9d701c8a8d
commit 88f409194d
4 changed files with 20 additions and 18 deletions

View File

@@ -168,7 +168,7 @@ Status ScriptedProcess::DoLaunch(Module *exe_module,
return {};
}
void ScriptedProcess::DidLaunch() {
void ScriptedProcess::DidResume() {
m_pid = GetInterface().GetProcessID();
GetLoadedDynamicLibrariesInfos();
}