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
e2a366ce
Commit
e2a366ce
authored
Dec 20, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Forward interrupts in 32-bit code to winedos too.
parent
5a6e0ea4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
instr.c
dlls/kernel32/instr.c
+0
-1
interrupts.c
dlls/winedos/interrupts.c
+4
-0
No files found.
dlls/kernel32/instr.c
View file @
e2a366ce
...
...
@@ -769,7 +769,6 @@ DWORD __wine_emulate_instruction( EXCEPTION_RECORD *rec, CONTEXT86 *context )
break
;
/* Unable to emulate it */
case
0xcd
:
/* int <XX> */
if
(
wine_ldt_is_system
(
context
->
SegCs
))
break
;
/* don't emulate it in 32-bit code */
if
(
!
winedos
.
EmulateInterruptPM
)
load_winedos
();
if
(
winedos
.
EmulateInterruptPM
)
{
...
...
dlls/winedos/interrupts.c
View file @
e2a366ce
...
...
@@ -324,6 +324,10 @@ void WINAPI DOSVM_EmulateInterruptPM( CONTEXT86 *context, BYTE intnum )
DOSVM_IntProcRelay
,
DOSVM_GetBuiltinHandler
(
intnum
)
);
}
else
if
(
wine_ldt_is_system
(
context
->
SegCs
))
{
DOSVM_CallBuiltinHandler
(
context
,
intnum
);
}
else
{
DOSVM_HardwareInterruptPM
(
context
,
intnum
);
...
...
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