From 8456e9d7f721a34e6a4ae10e4872fcf9849d6208 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 10 Feb 2024 16:58:45 -0800 Subject: [PATCH] command: io_mode removed for windows --- src/Command.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Command.zig b/src/Command.zig index af3979b3e..c5419814c 100644 --- a/src/Command.zig +++ b/src/Command.zig @@ -178,7 +178,6 @@ fn startWindows(self: *Command, arena: Allocator) !void { .access_mask = windows.GENERIC_READ | windows.SYNCHRONIZE, .share_access = windows.FILE_SHARE_READ, .creation = windows.OPEN_EXISTING, - .io_mode = .blocking, }, ) else null; defer if (null_fd) |fd| std.os.close(fd);