command: io_mode removed for windows

This commit is contained in:
Mitchell Hashimoto
2024-02-10 16:58:45 -08:00
parent be61e0025f
commit 8456e9d7f7

View File

@ -178,7 +178,6 @@ fn startWindows(self: *Command, arena: Allocator) !void {
.access_mask = windows.GENERIC_READ | windows.SYNCHRONIZE, .access_mask = windows.GENERIC_READ | windows.SYNCHRONIZE,
.share_access = windows.FILE_SHARE_READ, .share_access = windows.FILE_SHARE_READ,
.creation = windows.OPEN_EXISTING, .creation = windows.OPEN_EXISTING,
.io_mode = .blocking,
}, },
) else null; ) else null;
defer if (null_fd) |fd| std.os.close(fd); defer if (null_fd) |fd| std.os.close(fd);