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

Method DisconnectDebugServer

core/debuggercontroller.cpp:851–863  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

849
850
851bool DebuggerController::DisconnectDebugServer()
852{
853 if (!m_state->IsConnectedToDebugServer())
854 return true;
855
856 bool ok = m_adapter->DisconnectDebugServer();
857 if (!ok)
858 LogWarn("Failed to disconnect from the debug server");
859 else
860 m_state->SetConnectedToDebugServer(false);
861
862 return ok;
863}
864
865
866void DebuggerController::Detach()

Callers

nothing calls this directly

Calls 2

Tested by

no test coverage detected