debugger: increase default timeout of gdb watchdog to 40s

Was too low for big core files and general symbian debugging.
This commit is contained in:
hjk
2011-01-05 09:55:01 +01:00
parent adaed6952b
commit a8031f16b8

View File

@@ -768,7 +768,7 @@ void GdbEngine::flushCommand(const GdbCommand &cmd0)
int GdbEngine::commandTimeoutTime() const int GdbEngine::commandTimeoutTime() const
{ {
int time = debuggerCore()->action(GdbWatchdogTimeout)->value().toInt(); int time = debuggerCore()->action(GdbWatchdogTimeout)->value().toInt();
return 1000 * qMax(20, time); return 1000 * qMax(40, time);
} }
void GdbEngine::commandTimeout() void GdbEngine::commandTimeout()