forked from qt-creator/qt-creator
debugger: make watchdog timeout configurable
(cherry picked from commit bf077800b8)
Conflicts:
src/plugins/debugger/debuggerplugin.cpp
src/plugins/debugger/gdb/gdboptionspage.ui
This commit is contained in:
@@ -195,7 +195,8 @@ GdbEngine::GdbEngine(DebuggerManager *manager) :
|
||||
|
||||
m_commandTimer = new QTimer(this);
|
||||
m_commandTimer->setSingleShot(true);
|
||||
m_commandTimer->setInterval(COMMAND_TIMEOUT);
|
||||
m_commandTimer->setInterval(
|
||||
1000 * qMin(20, theDebuggerAction(GdbWatchdogTimeout)->value().toInt()));
|
||||
connect(m_commandTimer, SIGNAL(timeout()), SLOT(commandTimeout()));
|
||||
|
||||
// Needs no resetting in initializeVariables()
|
||||
|
||||
Reference in New Issue
Block a user