Alexandre Julliard : server: Also set extended registers from the native context even in Wow64 mode.

Alexandre Julliard julliard at winehq.org
Thu Aug 19 16:00:06 CDT 2021


Module: wine
Branch: master
Commit: d9ca9d455eed8b242106d0eeb1cf8481b2f62168
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=d9ca9d455eed8b242106d0eeb1cf8481b2f62168

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Aug 19 15:20:19 2021 +0200

server: Also set extended registers from the native context even in Wow64 mode.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 server/thread.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/thread.c b/server/thread.c
index c1fa80f1ad8..9d412106809 100644
--- a/server/thread.c
+++ b/server/thread.c
@@ -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 );




More information about the wine-cvs mailing list