mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
ntdll: Add a trace when calling vectored exception handlers too.
This commit is contained in:
parent
5dcdb4aba3
commit
c727fe4adc
1 changed files with 3 additions and 0 deletions
|
@ -243,7 +243,10 @@ static LONG call_vectored_handlers( EXCEPTION_RECORD *rec, CONTEXT *context )
|
|||
LIST_FOR_EACH( ptr, &vectored_handlers )
|
||||
{
|
||||
VECTORED_HANDLER *handler = LIST_ENTRY( ptr, VECTORED_HANDLER, entry );
|
||||
TRACE( "calling handler at %p code=%x flags=%x\n",
|
||||
handler->func, rec->ExceptionCode, rec->ExceptionFlags );
|
||||
ret = handler->func( &except_ptrs );
|
||||
TRACE( "handler at %p returned %x\n", handler->func, ret );
|
||||
if (ret == EXCEPTION_CONTINUE_EXECUTION) break;
|
||||
}
|
||||
RtlLeaveCriticalSection( &vectored_handlers_section );
|
||||
|
|
Loading…
Reference in a new issue