Skip to content
Snippets Groups Projects
Commit 7cd27f2e authored by hjk's avatar hjk
Browse files

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

parent 7d5ef1fb
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment