aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/plugins/debugger/cdb/cdbengine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp
index 84835d55dc..86acd62f2f 100644
--- a/src/plugins/debugger/cdb/cdbengine.cpp
+++ b/src/plugins/debugger/cdb/cdbengine.cpp
@@ -856,7 +856,7 @@ void CdbEngine::runEngine()
notifyInferiorUnrunnable();
processStop(*m_coreStopReason, false);
} else {
- postCommand("g", 0);
+ doContinueInferior();
}
}
@@ -2238,7 +2238,7 @@ void CdbEngine::processStop(const GdbMi &stopReason, bool conditionalBreakPointT
showMessage(message, LogError);
// Ignore things like WOW64, report tracepoints.
if (stopFlags & StopIgnoreContinue) {
- postCommand("g", 0);
+ doContinueInferior();
return;
}
// Notify about state and send off command sequence to get stack, etc.
@@ -3179,7 +3179,7 @@ void CdbEngine::handleExpression(const CdbExtensionCommandPtr &command)
if (value)
processStop(cookie.stopReason, true);
else
- postCommand("g", 0);
+ doContinueInferior();
}
}