debugger: add list of thread ids to TRK session state object

This commit is contained in:
hjk
2010-01-04 13:17:38 +01:00
parent 7d5ef1fbf0
commit 7cd27f2eec

View File

@@ -107,7 +107,8 @@ struct Library
uint dataseg;
};
struct TrkAppVersion {
struct TrkAppVersion
{
TrkAppVersion();
void reset();
@@ -141,6 +142,10 @@ struct Session
typedef QList<Library> Libraries;
Libraries libraries;
typedef uint Thread;
typedef QList<Thread> Threads;
Threads threads;
// Gdb request
uint currentThread;
QStringList modules;