Commit d5683bad authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

ntdll: Make __wine_unix_call_dispatcher_prolog_end() hidden on x86_64.

parent 5cc204cf
...@@ -1935,7 +1935,7 @@ static BOOL handle_syscall_trap( ucontext_t *sigcontext ) ...@@ -1935,7 +1935,7 @@ static BOOL handle_syscall_trap( ucontext_t *sigcontext )
} }
else if ((void *)RIP_sig( sigcontext ) == __wine_unix_call_dispatcher) else if ((void *)RIP_sig( sigcontext ) == __wine_unix_call_dispatcher)
{ {
extern void __wine_unix_call_dispatcher_prolog_end(void); extern void __wine_unix_call_dispatcher_prolog_end(void) DECLSPEC_HIDDEN;
RIP_sig( sigcontext ) = (ULONG64)__wine_unix_call_dispatcher_prolog_end; RIP_sig( sigcontext ) = (ULONG64)__wine_unix_call_dispatcher_prolog_end;
R10_sig( sigcontext ) = RCX_sig( sigcontext ); R10_sig( sigcontext ) = RCX_sig( sigcontext );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment