MCPcopy Create free account
hub / github.com/chigraph/chigraph / processContinue

Method processContinue

libchigraphdebugger/src/Debugger.cpp:77–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77Result Debugger::processContinue() {
78 Result res;
79
80 if (isAttached()) {
81 auto err = mProcess.Continue();
82
83 if (err.Fail()) {
84 res.addEntry("EUKN", "Failed to continue process",
85 {{"Error Code", err.GetError()}, {"Error String", err.GetCString()}});
86
87 return res;
88 }
89 }
90
91 return res;
92}
93Result Debugger::pause() {
94 Result res;
95

Callers 1

DebuggerTests.cppFile · 0.80

Calls 1

addEntryMethod · 0.80

Tested by

no test coverage detected