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
8f278f89
Commit
8f278f89
authored
Feb 13, 2024
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Make APCs alertable by default on ARM platforms.
parent
0b3d3ad2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
signal_arm.c
dlls/ntdll/unix/signal_arm.c
+1
-0
signal_arm64.c
dlls/ntdll/unix/signal_arm64.c
+1
-0
No files found.
dlls/ntdll/unix/signal_arm.c
View file @
8f278f89
...
@@ -1039,6 +1039,7 @@ NTSTATUS call_user_apc_dispatcher( CONTEXT *context, ULONG_PTR arg1, ULONG_PTR a
...
@@ -1039,6 +1039,7 @@ NTSTATUS call_user_apc_dispatcher( CONTEXT *context, ULONG_PTR arg1, ULONG_PTR a
stack
->
args
[
0
]
=
arg1
;
stack
->
args
[
0
]
=
arg1
;
stack
->
args
[
1
]
=
arg2
;
stack
->
args
[
1
]
=
arg2
;
stack
->
args
[
2
]
=
arg3
;
stack
->
args
[
2
]
=
arg3
;
stack
->
alertable
=
TRUE
;
frame
->
sp
=
(
DWORD
)
stack
;
frame
->
sp
=
(
DWORD
)
stack
;
frame
->
pc
=
(
DWORD
)
pKiUserApcDispatcher
;
frame
->
pc
=
(
DWORD
)
pKiUserApcDispatcher
;
...
...
dlls/ntdll/unix/signal_arm64.c
View file @
8f278f89
...
@@ -758,6 +758,7 @@ NTSTATUS call_user_apc_dispatcher( CONTEXT *context, ULONG_PTR arg1, ULONG_PTR a
...
@@ -758,6 +758,7 @@ NTSTATUS call_user_apc_dispatcher( CONTEXT *context, ULONG_PTR arg1, ULONG_PTR a
stack
->
args
[
0
]
=
arg1
;
stack
->
args
[
0
]
=
arg1
;
stack
->
args
[
1
]
=
arg2
;
stack
->
args
[
1
]
=
arg2
;
stack
->
args
[
2
]
=
arg3
;
stack
->
args
[
2
]
=
arg3
;
stack
->
alertable
=
TRUE
;
frame
->
sp
=
(
ULONG64
)
stack
;
frame
->
sp
=
(
ULONG64
)
stack
;
frame
->
pc
=
(
ULONG64
)
pKiUserApcDispatcher
;
frame
->
pc
=
(
ULONG64
)
pKiUserApcDispatcher
;
...
...
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