From 7c33549f98d5a9b068b0ad775a4b5ad38ca94ac4 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Mon, 22 Jun 2015 12:28:06 +0300 Subject: [PATCH] Debugger: Retrieve threads info for coredump handleStop2 used to retrieve the stack. This is no longer right. While at it, remove outdated comment regarding GDB version. Task-number: QTCREATORBUG-14617 Change-Id: I9511fe5315e941fd9e08737a5b11677f9fdf8d09 Reviewed-by: hjk Reviewed-by: Christian Stenger --- src/plugins/debugger/gdb/gdbengine.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index fd9569be124..890ae8bb8c0 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -1677,11 +1677,6 @@ void GdbEngine::handleStop2(const GdbMi &data) void GdbEngine::handleStop2() { - // We are already continuing. - if (!m_stackNeeded) - return; - - // This is only available in gdb 7.1+. postCommand("-thread-info", Discardable, CB(handleThreadInfo)); }