| 203 | } |
| 204 | |
| 205 | void ScriptConsole::setIoNote(std::string note) |
| 206 | { |
| 207 | std::lock_guard<std::mutex> lock(mMutex); |
| 208 | mIoNote = std::move(note); |
| 209 | // Claiming the slot here is the point: the bar is on screen, labelled with |
| 210 | // the stage, before any native IO has started. |
| 211 | mIoSlot = true; |
| 212 | if (!mIo.active) { |
| 213 | idleIo(); |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | void ScriptConsole::beginIo(std::string label, long long total) |
| 218 | { |
no outgoing calls
no test coverage detected