Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
bd63cce8
Commit
bd63cce8
authored
Mar 12, 2018
by
Andrew Wesie
Committed by
Alexandre Julliard
Mar 13, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Handle interrupt 0x2c on x86-64.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2f870c18
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+3
-0
exception.c
dlls/ntdll/tests/exception.c
+0
-2
No files found.
dlls/ntdll/signal_x86_64.c
View file @
bd63cce8
...
...
@@ -2809,6 +2809,9 @@ static inline BOOL handle_interrupt( unsigned int interrupt, EXCEPTION_RECORD *r
{
switch
(
interrupt
)
{
case
0x2c
:
rec
->
ExceptionCode
=
STATUS_ASSERTION_FAILURE
;
return
TRUE
;
case
0x2d
:
context
->
Rip
+=
3
;
rec
->
ExceptionCode
=
EXCEPTION_BREAKPOINT
;
...
...
dlls/ntdll/tests/exception.c
View file @
bd63cce8
...
...
@@ -2354,8 +2354,6 @@ static DWORD WINAPI handler( EXCEPTION_RECORD *rec, ULONG64 frame,
trace
(
"exception %u: %x flags:%x addr:%p
\n
"
,
entry
,
rec
->
ExceptionCode
,
rec
->
ExceptionFlags
,
rec
->
ExceptionAddress
);
todo_wine_if
(
rec
->
ExceptionCode
!=
except
->
status
&&
rec
->
ExceptionCode
!=
except
->
alt_status
)
ok
(
rec
->
ExceptionCode
==
except
->
status
||
(
except
->
alt_status
!=
0
&&
rec
->
ExceptionCode
==
except
->
alt_status
),
"%u: Wrong exception code %x/%x
\n
"
,
entry
,
rec
->
ExceptionCode
,
except
->
status
);
...
...
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