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
ed968c23
Commit
ed968c23
authored
Apr 19, 2019
by
André Hentschel
Committed by
Alexandre Julliard
Apr 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Reuse signal to trap translation for FreeBSD on ARM.
Signed-off-by:
André Hentschel
<
nerv@dawncrow.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
475f2197
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
signal_arm.c
dlls/ntdll/signal_arm.c
+3
-5
No files found.
dlls/ntdll/signal_arm.c
View file @
ed968c23
...
...
@@ -148,7 +148,8 @@ static inline enum arm_trap_code get_trap_code( int signal, const ucontext_t *si
enum
arm_trap_code
trap
=
TRAP_sig
(
sigcontext
);
if
(
trap
)
return
trap
;
/* trap is 0 on arm64 kernel */
#endif
switch
(
signal
)
{
case
SIGILL
:
...
...
@@ -158,11 +159,8 @@ static inline enum arm_trap_code get_trap_code( int signal, const ucontext_t *si
case
SIGBUS
:
return
TRAP_ARM_ALIGNFLT
;
default:
return
trap
;
return
TRAP_ARM_UNKNOWN
;
}
#else
return
TRAP_ARM_UNKNOWN
;
/* unknown trap code */
#endif
}
/***********************************************************************
...
...
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