| 1185 | } |
| 1186 | |
| 1187 | void MIDebugSession::slotInferiorRunning() |
| 1188 | { |
| 1189 | setDebuggerStateOn(s_appRunning); |
| 1190 | raiseEvent(program_running); |
| 1191 | |
| 1192 | if (m_commandQueue->haveImmediateCommand() || |
| 1193 | (m_debugger->currentCommand() && (m_debugger->currentCommand()->flags() & (CmdImmediately | CmdInterrupt)))) { |
| 1194 | ensureDebuggerListening(); |
| 1195 | } else { |
| 1196 | setDebuggerStateOn(s_dbgNotListening); |
| 1197 | } |
| 1198 | } |
| 1199 | |
| 1200 | void MIDebugSession::processNotification(const MI::AsyncRecord & async) |
| 1201 | { |
nothing calls this directly
no test coverage detected