Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e0a934d0
Commit
e0a934d0
authored
Oct 06, 2021
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Handle Unix lib exception outside Unix stack.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2ec2e136
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
signal_arm.c
dlls/ntdll/unix/signal_arm.c
+1
-1
signal_arm64.c
dlls/ntdll/unix/signal_arm64.c
+1
-1
signal_i386.c
dlls/ntdll/unix/signal_i386.c
+1
-1
signal_x86_64.c
dlls/ntdll/unix/signal_x86_64.c
+1
-1
No files found.
dlls/ntdll/unix/signal_arm.c
View file @
e0a934d0
...
...
@@ -645,7 +645,7 @@ static BOOL handle_syscall_fault( ucontext_t *context, EXCEPTION_RECORD *rec )
struct
syscall_frame
*
frame
=
arm_thread_data
()
->
syscall_frame
;
DWORD
i
;
if
(
!
is_inside_syscall
(
context
))
return
FALSE
;
if
(
!
is_inside_syscall
(
context
)
&&
!
ntdll_get_thread_data
()
->
jmp_buf
)
return
FALSE
;
TRACE
(
"code=%x flags=%x addr=%p pc=%08x tid=%04x
\n
"
,
rec
->
ExceptionCode
,
rec
->
ExceptionFlags
,
rec
->
ExceptionAddress
,
...
...
dlls/ntdll/unix/signal_arm64.c
View file @
e0a934d0
...
...
@@ -794,7 +794,7 @@ static BOOL handle_syscall_fault( ucontext_t *context, EXCEPTION_RECORD *rec )
struct
syscall_frame
*
frame
=
arm64_thread_data
()
->
syscall_frame
;
DWORD
i
;
if
(
!
is_inside_syscall
(
context
))
return
FALSE
;
if
(
!
is_inside_syscall
(
context
)
&&
!
ntdll_get_thread_data
()
->
jmp_buf
)
return
FALSE
;
TRACE
(
"code=%x flags=%x addr=%p pc=%p tid=%04x
\n
"
,
rec
->
ExceptionCode
,
rec
->
ExceptionFlags
,
rec
->
ExceptionAddress
,
...
...
dlls/ntdll/unix/signal_i386.c
View file @
e0a934d0
...
...
@@ -1697,7 +1697,7 @@ static BOOL handle_syscall_fault( ucontext_t *sigcontext, void *stack_ptr,
struct
syscall_frame
*
frame
=
x86_thread_data
()
->
syscall_frame
;
DWORD
i
,
*
stack
;
if
(
!
is_inside_syscall
(
sigcontext
))
return
FALSE
;
if
(
!
is_inside_syscall
(
sigcontext
)
&&
!
ntdll_get_thread_data
()
->
jmp_buf
)
return
FALSE
;
TRACE
(
"code=%x flags=%x addr=%p ip=%08x tid=%04x
\n
"
,
rec
->
ExceptionCode
,
rec
->
ExceptionFlags
,
rec
->
ExceptionAddress
,
...
...
dlls/ntdll/unix/signal_x86_64.c
View file @
e0a934d0
...
...
@@ -2478,7 +2478,7 @@ static BOOL handle_syscall_fault( ucontext_t *sigcontext, EXCEPTION_RECORD *rec,
struct
syscall_frame
*
frame
=
amd64_thread_data
()
->
syscall_frame
;
DWORD
i
;
if
(
!
is_inside_syscall
(
sigcontext
))
return
FALSE
;
if
(
!
is_inside_syscall
(
sigcontext
)
&&
!
ntdll_get_thread_data
()
->
jmp_buf
)
return
FALSE
;
TRACE_
(
seh
)(
"code=%x flags=%x addr=%p ip=%lx tid=%04x
\n
"
,
rec
->
ExceptionCode
,
rec
->
ExceptionFlags
,
rec
->
ExceptionAddress
,
...
...
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