MCPcopy Create free account
hub / github.com/Vector35/debugger / Quit

Method Quit

core/adapters/dbgengadapter.cpp:644–656  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

642}
643
644bool DbgEngAdapter::Quit()
645{
646 m_aboutToBeKilled = true;
647 m_lastOperationIsStepInto = false;
648 if (!this->m_debugClient)
649 return false;
650
651 if (this->m_debugClient->TerminateProcesses() != S_OK)
652 return false;
653
654 m_debugClient->ExitDispatch(reinterpret_cast<PDEBUG_CLIENT>(m_debugClient));
655 return true;
656}
657
658std::vector<DebugProcess> DbgEngAdapter::GetProcessList()
659{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected