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

Method Detach

core/adapters/dbgengadapter.cpp:630–642  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

628}
629
630bool DbgEngAdapter::Detach()
631{
632 m_aboutToBeKilled = true;
633 m_lastOperationIsStepInto = false;
634 if (!this->m_debugClient)
635 return false;
636
637 if (this->m_debugClient->DetachProcesses() != S_OK)
638 return false;
639
640 m_debugClient->ExitDispatch(reinterpret_cast<PDEBUG_CLIENT>(m_debugClient));
641 return true;
642}
643
644bool DbgEngAdapter::Quit()
645{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected