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
a7459d0c
Commit
a7459d0c
authored
Sep 12, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Handle trap exception in signal handler on ARM64.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
769c333c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
12 deletions
+2
-12
signal_arm64.c
dlls/ntdll/signal_arm64.c
+2
-12
No files found.
dlls/ntdll/signal_arm64.c
View file @
a7459d0c
...
...
@@ -541,17 +541,6 @@ done:
}
/**********************************************************************
* raise_trap_exception
*/
static
void
WINAPI
raise_trap_exception
(
EXCEPTION_RECORD
*
rec
,
CONTEXT
*
context
)
{
NTSTATUS
status
;
if
(
rec
->
ExceptionCode
==
EXCEPTION_BREAKPOINT
)
context
->
Pc
+=
4
;
status
=
NtRaiseException
(
rec
,
context
,
TRUE
);
raise_status
(
status
,
rec
);
}
/**********************************************************************
* raise_generic_exception
*/
static
void
WINAPI
raise_generic_exception
(
EXCEPTION_RECORD
*
rec
,
CONTEXT
*
context
)
...
...
@@ -1110,9 +1099,10 @@ static void trap_handler( int signal, siginfo_t *info, void *ucontext )
case
TRAP_BRKPT
:
default:
stack
->
rec
.
ExceptionCode
=
EXCEPTION_BREAKPOINT
;
stack
->
context
.
Pc
+=
4
;
break
;
}
setup_raise_exception
(
context
,
stack
,
raise_
trap
_exception
);
setup_raise_exception
(
context
,
stack
,
raise_
generic
_exception
);
}
/**********************************************************************
...
...
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