MCPcopy Create free account
hub / github.com/WheretIB/nullc / nullcDebugClearBreakpoints

Function nullcDebugClearBreakpoints

NULLC/nullc.cpp:1136–1155  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1134}
1135
1136nullres nullcDebugClearBreakpoints()
1137{
1138 using namespace NULLC;
1139
1140 if(!executor)
1141 {
1142 nullcLastError = "ERROR: NULLC is not initialized";
1143 return false;
1144 }
1145 executor->ClearBreakpoints();
1146#ifdef NULLC_BUILD_X86_JIT
1147 if(!executorX86)
1148 {
1149 nullcLastError = "ERROR: NULLC is not initialized";
1150 return false;
1151 }
1152 executorX86->ClearBreakpoints();
1153#endif
1154 return true;
1155}
1156
1157nullres nullcDebugAddBreakpointImpl(unsigned int instruction, bool oneHit)
1158{

Callers 3

SuperCalcSetBreakpointsFunction · 0.85
GeneralCommandThreadFunction · 0.85
DispatcherThreadFunction · 0.85

Calls 1

ClearBreakpointsMethod · 0.45

Tested by

no test coverage detected