Made the output of --debugmsg +seh a bit more verbose.

This commit is contained in:
Ove Kaaven 2002-01-02 21:44:05 +00:00 committed by Alexandre Julliard
parent 0c16564093
commit d553a9b000

View file

@ -170,9 +170,11 @@ void WINAPI EXC_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
{
PEXCEPTION_FRAME frame, dispatch, nested_frame;
EXCEPTION_RECORD newrec;
DWORD res;
DWORD res, c;
TRACE( "code=%lx flags=%lx\n", rec->ExceptionCode, rec->ExceptionFlags );
TRACE( "code=%lx flags=%lx addr=%p\n", rec->ExceptionCode, rec->ExceptionFlags, rec->ExceptionAddress );
for (c=0; c<rec->NumberParameters; c++) TRACE(" info[%ld]=%08lx\n", c, rec->ExceptionInformation[c]);
if (rec->ExceptionCode == EXCEPTION_WINE_STUB) TRACE(" stub=%s\n", (char*)rec->ExceptionInformation[1]);
if (send_debug_event( rec, TRUE, context ) == DBG_CONTINUE) return; /* continue execution */