MCPcopy Create free account
hub / github.com/carbonengine/trinity / DoDebugBreak

Function DoDebugBreak

trinity/trinity.cpp:326–337  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324
325#ifdef _WIN32
326static void DoDebugBreak()
327{
328 __try
329 {
330 // This breakpoint exception is used by several D3D return value checking functions
331 // If you get, here, go up the stack and see what D3D function failed
332 DebugBreak();
333 }
334 __except( GetExceptionCode() == EXCEPTION_BREAKPOINT ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH )
335 {
336 }
337}
338#endif
339
340static PyObject* PyBreakInDebugger( PyObject* module, PyObject* args )

Callers 1

PyBreakInDebuggerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected