We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d54938 commit feb8bffCopy full SHA for feb8bff
lldb/source/Target/Process.cpp
@@ -286,8 +286,10 @@ void ProcessProperties::SetDisableLangRuntimeUnwindPlans(bool disable) {
286
void ProcessProperties::DisableLanguageRuntimeUnwindPlansCallback() {
287
if (!m_process)
288
return;
289
- for (auto thread_sp : m_process->Threads())
+ for (auto thread_sp : m_process->Threads()) {
290
thread_sp->ClearStackFrames();
291
+ thread_sp->DiscardThreadPlans(/*force*/ true);
292
+ }
293
}
294
295
bool ProcessProperties::GetDetachKeepsStopped() const {
0 commit comments