forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.10'
Conflicts: src/plugins/debugger/cdb/cdbengine.cpp Change-Id: Idcfd19292730d2b0e67816715f7aa2cc0eb71c48
This commit is contained in:
@@ -295,12 +295,9 @@ QString CdbEngine::extensionLibraryName(bool is64Bit)
|
||||
return rc;
|
||||
}
|
||||
|
||||
int CdbEngine::elapsedLogTime() const
|
||||
int CdbEngine::elapsedLogTime()
|
||||
{
|
||||
const int elapsed = m_logTime.elapsed();
|
||||
const int delta = elapsed - m_elapsedLogTime;
|
||||
m_elapsedLogTime = elapsed;
|
||||
return delta;
|
||||
return m_logTimer.restart();
|
||||
}
|
||||
|
||||
void CdbEngine::createFullBacktrace()
|
||||
@@ -323,8 +320,8 @@ void CdbEngine::setupEngine()
|
||||
qDebug(">setupEngine");
|
||||
|
||||
init();
|
||||
if (!m_logTime.elapsed())
|
||||
m_logTime.start();
|
||||
if (!m_logTimer.elapsed())
|
||||
m_logTimer.start();
|
||||
|
||||
// Console: Launch the stub with the suspended application and attach to it
|
||||
// CDB in theory has a command line option '-2' that launches a
|
||||
|
||||
Reference in New Issue
Block a user