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

Method pause

libchigraphdebugger/src/Debugger.cpp:93–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91 return res;
92}
93Result Debugger::pause() {
94 Result res;
95
96 if (isAttached()) {
97 auto err = mProcess.Stop();
98
99 if (err.Fail()) {
100 res.addEntry("EUKN", "Failed to pause process",
101 {{"Error Code", err.GetError()}, {"Error String", err.GetCString()}});
102
103 return res;
104 }
105 }
106
107 return res;
108}
109
110Result Debugger::setBreakpoint(NodeInstance& node, lldb::SBBreakpoint* bp) {
111 Result res;

Callers

nothing calls this directly

Calls 1

addEntryMethod · 0.80

Tested by

no test coverage detected