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
bdf4b3b4
Commit
bdf4b3b4
authored
Feb 22, 2021
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 22, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Use NtContinue in RtlRestoreContext.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b3dfc903
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
signal_arm64.c
dlls/ntdll/signal_arm64.c
+1
-1
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+1
-1
No files found.
dlls/ntdll/signal_arm64.c
View file @
bdf4b3b4
...
...
@@ -1134,7 +1134,7 @@ void CDECL RtlRestoreContext( CONTEXT *context, EXCEPTION_RECORD *rec )
}
TRACE
(
"returning to %lx stack %lx
\n
"
,
context
->
Pc
,
context
->
Sp
);
Nt
SetContextThread
(
GetCurrentThread
(),
context
);
Nt
Continue
(
context
,
FALSE
);
}
/*******************************************************************
...
...
dlls/ntdll/signal_x86_64.c
View file @
bdf4b3b4
...
...
@@ -1210,7 +1210,7 @@ void CDECL RtlRestoreContext( CONTEXT *context, EXCEPTION_RECORD *rec )
}
TRACE
(
"returning to %p stack %p
\n
"
,
(
void
*
)
context
->
Rip
,
(
void
*
)
context
->
Rsp
);
Nt
SetContextThread
(
GetCurrentThread
(),
context
);
Nt
Continue
(
context
,
FALSE
);
}
...
...
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