forked from qt-creator/qt-creator
Fix inferior pid not being propagated
Change-Id: I373621f78bae04f7cdcc66fcf84712acb4245014 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -105,6 +105,7 @@ public:
|
||||
QString toString(bool multiline = false, int indent = 0) const;
|
||||
qulonglong toAddress() const;
|
||||
int toInt() const { return m_data.toInt(); }
|
||||
qint64 toLongLong() const { return m_data.toLongLong(); }
|
||||
void fromString(const QString &str);
|
||||
void fromStringMultiple(const QString &str);
|
||||
|
||||
|
@@ -488,6 +488,8 @@ void LldbEngine::handleResponse(const QString &response)
|
||||
handleLocationNotification(item);
|
||||
else if (name == "output")
|
||||
handleOutputNotification(item);
|
||||
else if (name == "pid")
|
||||
notifyInferiorPid(item.toLongLong());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user