Commit fba6b7a1 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Also send segment registers to the server on suspend.

Fixes some test failures in wow64 mode.
parent 1014bab9
......@@ -2117,7 +2117,7 @@ static void usr1_handler( int signal, siginfo_t *siginfo, void *sigcontext )
if (is_inside_syscall( ucontext ))
{
DECLSPEC_ALIGN(64) XSTATE xs;
context.c.ContextFlags = CONTEXT_FULL;
context.c.ContextFlags = CONTEXT_FULL | CONTEXT_SEGMENTS;
context_init_xstate( &context.c, &xs );
NtGetContextThread( GetCurrentThread(), &context.c );
......
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