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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
signal_arm.c
dlls/ntdll/unix/signal_arm.c
+5
-4
signal_arm64.c
dlls/ntdll/unix/signal_arm64.c
+5
-4
No files found.
dlls/ntdll/unix/signal_arm.c
View file @
8f278f89
...
@@ -1035,10 +1035,11 @@ NTSTATUS call_user_apc_dispatcher( CONTEXT *context, ULONG_PTR arg1, ULONG_PTR a
...
@@ -1035,10 +1035,11 @@ NTSTATUS call_user_apc_dispatcher( CONTEXT *context, ULONG_PTR arg1, ULONG_PTR a
NtGetContextThread
(
GetCurrentThread
(),
&
stack
->
context
);
NtGetContextThread
(
GetCurrentThread
(),
&
stack
->
context
);
stack
->
context
.
R0
=
status
;
stack
->
context
.
R0
=
status
;
}
}
stack
->
func
=
func
;
stack
->
func
=
func
;
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
...
@@ -754,10 +754,11 @@ NTSTATUS call_user_apc_dispatcher( CONTEXT *context, ULONG_PTR arg1, ULONG_PTR a
...
@@ -754,10 +754,11 @@ NTSTATUS call_user_apc_dispatcher( CONTEXT *context, ULONG_PTR arg1, ULONG_PTR a
NtGetContextThread
(
GetCurrentThread
(),
&
stack
->
context
);
NtGetContextThread
(
GetCurrentThread
(),
&
stack
->
context
);
stack
->
context
.
X0
=
status
;
stack
->
context
.
X0
=
status
;
}
}
stack
->
func
=
func
;
stack
->
func
=
func
;
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