forked from qt-creator/qt-creator
debugger: add list of thread ids to TRK session state object
This commit is contained in:
@@ -107,7 +107,8 @@ struct Library
|
|||||||
uint dataseg;
|
uint dataseg;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct TrkAppVersion {
|
struct TrkAppVersion
|
||||||
|
{
|
||||||
TrkAppVersion();
|
TrkAppVersion();
|
||||||
void reset();
|
void reset();
|
||||||
|
|
||||||
@@ -141,6 +142,10 @@ struct Session
|
|||||||
typedef QList<Library> Libraries;
|
typedef QList<Library> Libraries;
|
||||||
Libraries libraries;
|
Libraries libraries;
|
||||||
|
|
||||||
|
typedef uint Thread;
|
||||||
|
typedef QList<Thread> Threads;
|
||||||
|
Threads threads;
|
||||||
|
|
||||||
// Gdb request
|
// Gdb request
|
||||||
uint currentThread;
|
uint currentThread;
|
||||||
QStringList modules;
|
QStringList modules;
|
||||||
|
Reference in New Issue
Block a user