Commit ef7087a5 authored by David Beck's avatar David Beck Committed by Alexandre Julliard

Added RFTHREAD flag in rfork call.

parent e14e101f
...@@ -300,7 +300,7 @@ int wine_pthread_create_thread( struct wine_pthread_thread_info *info ) ...@@ -300,7 +300,7 @@ int wine_pthread_create_thread( struct wine_pthread_thread_info *info )
"ret;\n" "ret;\n"
"1:\n\t" /* parent -> caller thread */ "1:\n\t" /* parent -> caller thread */
"addl $8,%%esp" : "addl $8,%%esp" :
: "r" (sp), "g" (SYS_rfork), "g" (RFPROC | RFMEM) : "r" (sp), "g" (SYS_rfork), "g" (RFPROC | RFMEM | RFTHREAD)
: "eax", "edx"); : "eax", "edx");
return 0; return 0;
} }
......
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