=thread-group-created are the new process creation notifications

This commit is contained in:
Oswald Buddenhagen
2009-10-08 15:21:47 +02:00
parent 8fdf9e61bf
commit e0f4c4bcee

View File

@@ -445,6 +445,9 @@ void GdbEngine::handleResponse(const QByteArray &buff)
// Archer has "{id="28902"}"
QByteArray id = result.findChild("id").data();
showStatusMessage(tr("Thread group %1 created.").arg(_(id)));
int pid = id.toInt();
if (pid != inferiorPid())
handleInferiorPidChanged(pid);
} else if (asyncClass == "thread-created") {
//"{id="1",group-id="28902"}"
QByteArray id = result.findChild("id").data();