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

Method Pause

core/debuggercontroller.cpp:930–938  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

928
929
930bool DebuggerController::Pause()
931{
932 if (!(m_state->IsConnected() && m_state->IsRunning()))
933 return false;
934
935 std::thread([&]() { PauseAndWait(); }).detach();
936
937 return true;
938}
939
940
941DebugStopReason DebuggerController::PauseAndWaitInternal()

Callers 2

BNDebuggerPauseFunction · 0.45
mainFunction · 0.45

Calls 3

detachMethod · 0.80
IsConnectedMethod · 0.45
IsRunningMethod · 0.45

Tested by

no test coverage detected