Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c727fe4a
Commit
c727fe4a
authored
Feb 02, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add a trace when calling vectored exception handlers too.
parent
5dcdb4ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
exception.c
dlls/ntdll/exception.c
+3
-0
No files found.
dlls/ntdll/exception.c
View file @
c727fe4a
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment