log win32 demon resume code

This commit is contained in:
Ryan Fleury
2024-06-19 12:07:08 -07:00
parent 435877824a
commit b5b5aca691
+5
View File
@@ -1609,8 +1609,13 @@ dmn_ctrl_run(Arena *arena, DMN_CtrlCtx *ctx, DMN_RunCtrls *ctrls)
{ {
if(dmn_w32_shared->exception_not_handled && !ctrls->ignore_previous_exception) if(dmn_w32_shared->exception_not_handled && !ctrls->ignore_previous_exception)
{ {
log_infof("using DBG_EXCEPTION_NOT_HANDLED\n");
resume_code = DBG_EXCEPTION_NOT_HANDLED; resume_code = DBG_EXCEPTION_NOT_HANDLED;
} }
else
{
log_infof("using DBG_CONTINUE\n");
}
dmn_w32_shared->exception_not_handled = 0; dmn_w32_shared->exception_not_handled = 0;
} }