forked from qt-creator/qt-creator
Android: Send suspend/resume instead of threads in handleJdbSettled
"threads" causes an exception in my jdb on my machine. "suspend" and "resume" do not, and they also cause enough delay for JDB to settle. Change-Id: I5297d720c5fdbe5ee2eaa421624491af50bc40bf Reviewed-by: Cristian Adam <cristian.adam@qt.io>
This commit is contained in:
@@ -782,7 +782,7 @@ void AndroidRunnerWorker::handleJdbSettled()
|
|||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
const QStringList commands{"threads", "cont", "exit"};
|
const QStringList commands{"suspend", "resume", "cont", "exit"};
|
||||||
|
|
||||||
for (const QString &command : commands) {
|
for (const QString &command : commands) {
|
||||||
if (waitForCommand()) {
|
if (waitForCommand()) {
|
||||||
|
Reference in New Issue
Block a user