Commit c5134b77 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Support setting the CPU context on the current thread without segment registers.

parent f2e30a0a
...@@ -758,10 +758,19 @@ void set_cpu_context( const CONTEXT *context ) ...@@ -758,10 +758,19 @@ void set_cpu_context( const CONTEXT *context )
} }
if (flags & CONTEXT_FULL) if (flags & CONTEXT_FULL)
{ {
if ((flags & CONTEXT_FULL) != (CONTEXT_FULL & ~CONTEXT_i386)) if (!(flags & CONTEXT_CONTROL))
FIXME( "setting partial context (%x) not supported\n", flags ); FIXME( "setting partial context (%x) not supported\n", flags );
else else if (flags & CONTEXT_SEGMENTS)
__wine_call_from_32_restore_regs( context ); __wine_call_from_32_restore_regs( context );
else
{
CONTEXT newcontext = *context;
newcontext.SegDs = wine_get_ds();
newcontext.SegEs = wine_get_es();
newcontext.SegFs = wine_get_fs();
newcontext.SegGs = wine_get_gs();
__wine_call_from_32_restore_regs( &newcontext );
}
} }
} }
......
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