debugger: gather more information on threads when easily available

This commit is contained in:
hjk
2010-05-17 17:38:31 +02:00
parent 5d5eeed6c0
commit 2f69bae63f
7 changed files with 71 additions and 23 deletions

View File

@@ -101,14 +101,21 @@ private:
struct ThreadData
{
ThreadData(int threadId = 0);
// Permanent data.
int id;
QString targetId;
QString core;
// State information when stopped
void notifyRunning(); // Clear state information
int id;
// State information when stopped
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 */