forked from qt-creator/qt-creator
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user