]> gitweb.factorcode.org Git - factor.git/commitdiff
io.launcher.windows: don't set DETACHED_PROCESS for now
authorJohn Benediktsson <mrjbq7@gmail.com>
Sun, 15 Jan 2023 21:57:49 +0000 (13:57 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 15 Jan 2023 21:57:49 +0000 (13:57 -0800)
basis/io/launcher/windows/windows.factor

index 7a957e30032ea7054f2a84df5eda1288e4930cbf..277f3ab8bcdb32100b21d1abb4a6e500d6b9e035 100644 (file)
@@ -111,8 +111,8 @@ TUPLE: CreateProcess-args
     pick group>> [
         {
             { +same-group+ [ ] }
-            { +new-session+ [ DETACHED_PROCESS bitor CREATE_NEW_PROCESS_GROUP bitor ] }
-            { +new-group+ [ DETACHED_PROCESS bitor CREATE_NEW_PROCESS_GROUP bitor ] }
+            { +new-session+ [ CREATE_NEW_PROCESS_GROUP bitor ] }
+            { +new-group+ [ CREATE_NEW_PROCESS_GROUP bitor ] }
             [ drop ]
         } case
     ] when*