1
0
mirror of https://github.com/dockur/windows.git synced 2026-07-27 21:42:36 +07:00

fix: Prevent races during interactive QEMU shutdown (#1906)

This commit is contained in:
Kroese
2026-07-20 13:29:29 +02:00
committed by GitHub
parent c7514780c5
commit 577be226fe
+1 -1
View File
@@ -57,7 +57,7 @@ if ! interactive; then
"${cmd[@]}" ${ARGS:+ $ARGS} >"$pipe" 2>&1 &
else
startConsole "$pipe"
setsid -w "${cmd[@]}" ${ARGS:+ $ARGS} </dev/null >"$pipe" 2>&1 &
startQemu "${cmd[@]}" ${ARGS:+ $ARGS} >"$pipe" 2>&1
fi
pid=$!