MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / debug

Method debug

gui/qt/emuthread.cpp:371–383  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

369}
370
371void EmuThread::debug(bool state, int mode) {
372 bool oldState;
373 {
374 std::lock_guard<std::mutex> lock(m_mutexDebug);
375 oldState = m_debug;
376 }
377 if (oldState && !state) {
378 resume();
379 }
380 if (state) {
381 req(mode);
382 }
383}
384
385void EmuThread::load(emu_data_t fileType, const QString &filePath) {
386

Callers 3

debugBasicReconfigureMethod · 0.80
debugExecuteMethod · 0.80
debugToggleMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected