| 361 | } |
| 362 | |
| 363 | void EmuThread::resume() { |
| 364 | { |
| 365 | std::lock_guard<std::mutex> lock(m_mutexDebug); |
| 366 | m_debug = false; |
| 367 | } |
| 368 | m_cvDebug.notify_all(); |
| 369 | } |
| 370 | |
| 371 | void EmuThread::debug(bool state, int mode) { |
| 372 | bool oldState; |
no outgoing calls
no test coverage detected