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
4fabaa6a
Commit
4fabaa6a
authored
Sep 15, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fixup the pc address for breakpoint exceptions on ARM64.
parent
75b3022a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
signal_arm64.c
dlls/ntdll/unix/signal_arm64.c
+4
-0
No files found.
dlls/ntdll/unix/signal_arm64.c
View file @
4fabaa6a
...
...
@@ -1018,6 +1018,9 @@ static void setup_exception( ucontext_t *sigcontext, EXCEPTION_RECORD *rec )
return
;
}
/* fix up instruction pointer in context for EXCEPTION_BREAKPOINT */
if
(
rec
->
ExceptionCode
==
EXCEPTION_BREAKPOINT
)
context
.
Pc
-=
4
;
stack
=
virtual_setup_exception
(
stack_ptr
,
(
sizeof
(
*
stack
)
+
15
)
&
~
15
,
rec
);
stack
->
rec
=
*
rec
;
stack
->
context
=
context
;
...
...
@@ -1336,6 +1339,7 @@ static void trap_handler( int signal, siginfo_t *siginfo, void *sigcontext )
NtRaiseException
(
&
rec
,
&
ctx
,
FALSE
);
return
;
}
PC_sig
(
context
)
+=
4
;
/* skip the brk instruction */
rec
.
ExceptionCode
=
EXCEPTION_BREAKPOINT
;
rec
.
NumberParameters
=
1
;
break
;
...
...
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