[lldb] Fix copy-paste error in SetPrivateRunLockToRunning (#189322)
SetPrivateRunLockToRunning incorrectly delegated to SetPrivateRunLockToStopped instead of SetPrivateRunLockToRunning, causing the private run lock to never transition to the running state on process resume. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
96bd7b6e15
commit
b255e78cb9
@ -3291,7 +3291,7 @@ protected:
|
||||
bool SetPrivateRunLockToRunning() {
|
||||
assert(m_current_private_state_thread_sp);
|
||||
if (m_current_private_state_thread_sp)
|
||||
return m_current_private_state_thread_sp->SetPrivateRunLockToStopped();
|
||||
return m_current_private_state_thread_sp->SetPrivateRunLockToRunning();
|
||||
return false;
|
||||
}
|
||||
bool SetPublicRunLockToStopped() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user