From b439999f1d8e0d2dbb8c60bcffff8f21e7f80ac9 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 17 Apr 2012 10:00:40 +0200 Subject: debugger: try quicker start when no breakpoints are set This prevents initial reading of debug information when no breakpoints are set. The debug information will be read on first stop instead, e.g. when the user interrupts. Change-Id: I6156347bf108e9ed89f54ca67021f37c02fa5116 Reviewed-by: Aurindam Jana --- src/plugins/debugger/gdb/attachgdbadapter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/debugger/gdb/attachgdbadapter.cpp') diff --git a/src/plugins/debugger/gdb/attachgdbadapter.cpp b/src/plugins/debugger/gdb/attachgdbadapter.cpp index 28c722a4e0..98e35c4b9b 100644 --- a/src/plugins/debugger/gdb/attachgdbadapter.cpp +++ b/src/plugins/debugger/gdb/attachgdbadapter.cpp @@ -86,7 +86,7 @@ void AttachGdbAdapter::runEngine() .arg(m_engine->inferiorPid())); m_engine->notifyEngineRunAndInferiorStopOk(); GdbMi data; - m_engine->handleStop0(data); + m_engine->handleStop1(data); } void AttachGdbAdapter::handleAttach(const GdbResponse &response) -- cgit v1.2.1