aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/stackhandler.h
diff options
context:
space:
mode:
authorhjk <[email protected]>2010-05-17 17:38:31 +0200
committerhjk <[email protected]>2010-05-18 12:13:27 +0200
commit2f69bae63f4180fc8b34bcefd55d120eca0431ab (patch)
tree69372deefe0a7020df6e034b47112a4c1342e140 /src/plugins/debugger/stackhandler.h
parent5d5eeed6c077b8a508123f763c21a6a6be458928 (diff)
debugger: gather more information on threads when easily available
Diffstat (limited to 'src/plugins/debugger/stackhandler.h')
-rw-r--r--src/plugins/debugger/stackhandler.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/plugins/debugger/stackhandler.h b/src/plugins/debugger/stackhandler.h
index 64c0eff0957..f0aa893ad51 100644
--- a/src/plugins/debugger/stackhandler.h
+++ b/src/plugins/debugger/stackhandler.h
@@ -101,14 +101,21 @@ private:
struct ThreadData
{
ThreadData(int threadId = 0);
- void notifyRunning(); // Clear state information
+ // Permanent data.
int id;
+ QString targetId;
+ QString core;
+
// State information when stopped
+ void notifyRunning(); // Clear state information
+
+ int frameLevel;
quint64 address;
QString function;
- QString file;
- int line;
+ QString fileName;
+ QString state;
+ int lineNumber;
};
/*! A model to represent the running threads in a QTreeView or ComboBox */