server: Also set extended registers from the native context even in Wow64 mode.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b7323b4b3e
commit
d9ca9d455e
|
@ -129,7 +129,7 @@ struct context
|
|||
/* flags for registers that always need to be set from the server side */
|
||||
static const unsigned int system_flags = SERVER_CTX_DEBUG_REGISTERS;
|
||||
/* flags for registers that are set from the native context even in WoW mode */
|
||||
static const unsigned int always_native_flags = SERVER_CTX_DEBUG_REGISTERS | SERVER_CTX_YMM_REGISTERS;
|
||||
static const unsigned int always_native_flags = SERVER_CTX_DEBUG_REGISTERS | SERVER_CTX_FLOATING_POINT | SERVER_CTX_YMM_REGISTERS;
|
||||
|
||||
static void dump_context( struct object *obj, int verbose );
|
||||
static int context_signaled( struct object *obj, struct wait_queue_entry *entry );
|
||||
|
|
Loading…
Reference in New Issue