| 158 | } |
| 159 | |
| 160 | void MainController::ProcessorChangeHandler::sendProcessorChangeMessage(Processor* changedProcessor, EventType type, |
| 161 | bool synchronous) |
| 162 | { |
| 163 | tempProcessor = changedProcessor; |
| 164 | tempType = type; |
| 165 | |
| 166 | if (synchronous) |
| 167 | handleAsyncUpdate(); |
| 168 | else |
| 169 | triggerAsyncUpdate(); |
| 170 | } |
| 171 | |
| 172 | void MainController::ProcessorChangeHandler::handleAsyncUpdate() |
| 173 | { |
no test coverage detected