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

Method Go

core/debuggercontroller.cpp:326–335  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324
325
326bool DebuggerController::Go()
327{
328 // This is an API function of the debugger. We only do these checks at the API level.
329 if (!CanResumeTarget())
330 return false;
331
332 std::thread([&]() { GoAndWait(); }).detach();
333
334 return true;
335}
336
337
338DebugStopReason DebuggerController::GoAndWait()

Callers 2

BNDebuggerGoFunction · 0.45
ExecuteAdapterAndWaitMethod · 0.45

Calls 1

detachMethod · 0.80

Tested by

no test coverage detected