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

Method ExecStatus

core/adapters/dbgengadapter.cpp:1225–1235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1223}
1224
1225unsigned long DbgEngAdapter::ExecStatus()
1226{
1227 if (!m_debugControl)
1228 return DEBUG_STATUS_NO_DEBUGGEE;
1229
1230 unsigned long execution_status {};
1231 if (this->m_debugControl->GetExecutionStatus(&execution_status) != S_OK)
1232 return 0;
1233
1234 return execution_status;
1235}
1236
1237uint64_t DbgEngAdapter::ExitCode()
1238{

Callers 1

StopReasonMethod · 0.95

Calls 1

GetExecutionStatusMethod · 0.80

Tested by

no test coverage detected