From a8031f16b850f283ab5b0f62e6a082881e906707 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 5 Jan 2011 09:55:01 +0100 Subject: [PATCH] debugger: increase default timeout of gdb watchdog to 40s Was too low for big core files and general symbian debugging. --- src/plugins/debugger/gdb/gdbengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index dde92ce2da4..2733a88746b 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -768,7 +768,7 @@ void GdbEngine::flushCommand(const GdbCommand &cmd0) int GdbEngine::commandTimeoutTime() const { int time = debuggerCore()->action(GdbWatchdogTimeout)->value().toInt(); - return 1000 * qMax(20, time); + return 1000 * qMax(40, time); } void GdbEngine::commandTimeout()