Skip to content
Snippets Groups Projects
Commit 013d0880 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard
Browse files

Stop winelib programs on fault instead of endless faultlooping.

parent b199b195
No related branches found
No related tags found
No related merge requests found
......@@ -282,6 +282,10 @@ static HANDLER_DEF(SIGNAL_fault)
if (fnWINE_Debugger)
fnWINE_Debugger( signal, HANDLER_CONTEXT );
else {
MSG("stopping pid %d due to unhandled %s.\n",getpid(),fault);
kill(getpid(),SIGSTOP);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment