summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2015-06-22 12:28:06 +0300
committerOrgad Shaneh <orgads@gmail.com>2015-06-22 14:02:21 +0000
commit7c33549f98d5a9b068b0ad775a4b5ad38ca94ac4 (patch)
tree3bb483ac32f089b22a0c5b8cdf1f12aaeab6ee4a
parent1414c3ed2f3e4bd9c196f8af4deaaf106cac03fd (diff)
downloadqt-creator-7c33549f98d5a9b068b0ad775a4b5ad38ca94ac4.tar.gz
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 <hjk@theqtcompany.com> Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--src/plugins/debugger/gdb/gdbengine.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index fd9569be12..890ae8bb8c 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));
}