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
aa26f966
Commit
aa26f966
authored
Jun 01, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Get rid of raise_func_trampoline() on x86-64.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1cc06497
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
signal_x86_64.c
dlls/ntdll/unix/signal_x86_64.c
+1
-7
No files found.
dlls/ntdll/unix/signal_x86_64.c
View file @
aa26f966
...
...
@@ -1865,11 +1865,6 @@ NTSTATUS get_thread_wow64_context( HANDLE handle, void *ctx, ULONG size )
}
extern
void
CDECL
raise_func_trampoline
(
void
*
dispatcher
)
DECLSPEC_HIDDEN
;
__ASM_GLOBAL_FUNC
(
raise_func_trampoline
,
"jmpq *%r8
\n\t
"
)
/***********************************************************************
* setup_raise_exception
*/
...
...
@@ -1934,8 +1929,7 @@ static void setup_raise_exception( ucontext_t *sigcontext, EXCEPTION_RECORD *rec
}
}
RIP_sig
(
sigcontext
)
=
(
ULONG_PTR
)
raise_func_trampoline
;
R8_sig
(
sigcontext
)
=
(
ULONG_PTR
)
pKiUserExceptionDispatcher
;
RIP_sig
(
sigcontext
)
=
(
ULONG_PTR
)
pKiUserExceptionDispatcher
;
RSP_sig
(
sigcontext
)
=
(
ULONG_PTR
)
stack
;
/* clear single-step, direction, and align check flag */
EFL_sig
(
sigcontext
)
&=
~
(
0x100
|
0x400
|
0x40000
);
...
...
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