aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerengine.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2012-10-19 16:37:57 +0200
committerhjk <[email protected]>2012-10-23 19:35:14 +0200
commit0d9a56ab3f760f357a82a21722d076c220b5d659 (patch)
tree3e64c02166bf851b72e04a32bbd6de3ddebdacfa /src/plugins/debugger/debuggerengine.cpp
parent617f74aa19af61e3ca2579d04327782b1e7a407e (diff)
Debugger: Rework thread data aquisition
Listen to gdb/MI notifications when possible. This is more granular, gives access to the thread group id and takes care of thread changes at any time. Change-Id: I8c67f6f19b204059deefdf7e07fe3b4ce13ed963 Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerengine.cpp')
-rw-r--r--src/plugins/debugger/debuggerengine.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plugins/debugger/debuggerengine.cpp b/src/plugins/debugger/debuggerengine.cpp
index 790d8ee0153..aa676f85445 100644
--- a/src/plugins/debugger/debuggerengine.cpp
+++ b/src/plugins/debugger/debuggerengine.cpp
@@ -1233,10 +1233,6 @@ void DebuggerEngine::setState(DebuggerState state, bool forced)
handler->notifyBreakpointReleased(id);
}
- const bool running = d->m_state == InferiorRunOk;
- if (running)
- threadsHandler()->notifyRunning();
-
showMessage(msg, LogDebug);
updateViews();
@@ -1586,10 +1582,6 @@ void DebuggerEngine::changeBreakpoint(BreakpointModelId id)
QTC_CHECK(false);
}
-void DebuggerEngine::selectThread(int)
-{
-}
-
void DebuggerEngine::assignValueInDebugger(const WatchData *,
const QString &, const QVariant &)
{