From 77da3923a8ff681e49795b3805e249307a5fb212 Mon Sep 17 00:00:00 2001 From: Arvid Ephraim Picciani <arvid.picciani@nokia.com> Date: Mon, 6 Dec 2010 18:15:53 +0100 Subject: [PATCH] lldb: remove incorrect running hints from step funcs the target eventloop emits the correct events when stepping, (running followed by stop) its up to the Debuggerruncontrol to fix the raceconditions. emiting events artificially just makes it worse --- src/plugins/debugger/lldb/guest/lldbengineguest.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/plugins/debugger/lldb/guest/lldbengineguest.cpp b/src/plugins/debugger/lldb/guest/lldbengineguest.cpp index e853de9abcf..8f2cca503b0 100644 --- a/src/plugins/debugger/lldb/guest/lldbengineguest.cpp +++ b/src/plugins/debugger/lldb/guest/lldbengineguest.cpp @@ -235,8 +235,6 @@ void LldbEngineGuest::executeStepOut() if (!m_currentThread.IsValid()) return; m_currentThread.StepOut(); - notifyInferiorRunRequested(); - notifyInferiorRunOk(); } void LldbEngineGuest::executeNext() @@ -246,8 +244,6 @@ void LldbEngineGuest::executeNext() if (!m_currentThread.IsValid()) return; m_currentThread.StepOver(); - notifyInferiorRunRequested(); - notifyInferiorRunOk(); } void LldbEngineGuest::executeStepI() @@ -266,8 +262,6 @@ void LldbEngineGuest::executeNextI() if (!m_currentThread.IsValid()) return; m_currentThread.StepInstruction(true); - notifyInferiorRunRequested(); - notifyInferiorRunOk(); } void LldbEngineGuest::continueInferior() -- GitLab