about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-05-14 16:15:27 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-05-14 16:15:27 +0200
commit57bfa3832827c7e61998b3e7edef0dd879bed1ce (patch)
tree91aaac6cd64b0d7e29a0abc43492eedcb72a178d /src
parent2c00386e999e264d5e53ad48229e750d0b46306d (diff)
downloadbox64-57bfa3832827c7e61998b3e7edef0dd879bed1ce.tar.gz
box64-57bfa3832827c7e61998b3e7edef0dd879bed1ce.zip
Removed the export WINEFSYNC=0 at start, use BOX64_FUTEX_WAITV=0 to disable instead
Diffstat (limited to 'src')
-rw-r--r--src/core.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core.c b/src/core.c
index 36ce41dd..b1a552bb 100644
--- a/src/core.c
+++ b/src/core.c
@@ -1807,10 +1807,6 @@ int initialize(int argc, const char **argv, char** env, x64emu_t** emulator, elf
     if(!strcmp(prog, "wineserver") || !strcmp(prog, "wineserver64") || (strlen(prog)>9 && !strcmp(prog+strlen(prog)-strlen("/wineserver"), "/wineserver"))) {
         box64_wine = 1;
     }
-    if(box64_wine) {
-        // disabling the use of futex_waitv for now
-        setenv("WINEFSYNC", "0", 1);
-    }
     // Create a new context
     my_context = NewBox64Context(argc - nextarg);