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

Method BreakInto

core/adapters/dbgengadapter.cpp:1073–1084  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1071}
1072
1073bool DbgEngAdapter::BreakInto()
1074{
1075 if (ExecStatus() == DEBUG_STATUS_BREAK)
1076 return false;
1077
1078 m_lastOperationIsStepInto = false;
1079 // After we call SetInterrupt(), the WaitForEvent() function will return due to a breakpoint exception
1080 if (this->m_debugControl->SetInterrupt(DEBUG_INTERRUPT_ACTIVE) != S_OK)
1081 return false;
1082
1083 return true;
1084}
1085
1086bool DbgEngAdapter::Go()
1087{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected