Merge branch '1.0.0' into master-master

Conflicts:
	src/plugins/debugger/debugger.pro
	src/plugins/debugger/gdbengine.cpp
This commit is contained in:
Oswald Buddenhagen
2009-02-24 15:15:39 +01:00
42 changed files with 138 additions and 126 deletions

View File

@@ -1131,6 +1131,7 @@ void GdbEngine::handleAqcuiredInferior()
reloadSourceFiles();
tryLoadCustomDumpers();
#ifndef Q_OS_MAC
// intentionally after tryLoadCustomDumpers(),
// otherwise we'd interupt solib loading.
if (qq->wantsAllPluginBreakpoints()) {
@@ -1146,6 +1147,7 @@ void GdbEngine::handleAqcuiredInferior()
sendCommand("set auto-solib-add off");
sendCommand("set stop-on-solib-events 0");
}
#endif
// nicer to see a bit of the world we live in
reloadModules();
attemptBreakpointSynchronization();
@@ -1185,11 +1187,11 @@ void GdbEngine::handleAsyncOutput(const GdbMi &data)
qq->notifyInferiorStopped();
m_waitingForFirstBreakpointToBeHit = false;
//
// this will "continue" if done
m_waitingForBreakpointSynchronizationToContinue = true;
//
// that's the "early stop"
//
handleAqcuiredInferior();
return;
}