zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit f072313e1e8881dcd3b360b03e30397d705c1d00 (tree)
parent 0317e95aade4f5651e8f556ca19d1598030715da
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sat,  3 Jan 2026 17:09:56 -0800

std.Io.Threaded: delete dead comment

The problem it talked about is solved now that the direct call to
dirOpenDirWindows makes sense in this context.

Diffstat:
Mlib/std/Io/Threaded.zig | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/lib/std/Io/Threaded.zig b/lib/std/Io/Threaded.zig @@ -13772,11 +13772,6 @@ fn windowsCreateProcessPathExt( // we iterate the matches and take note of any that are either the unappended version, // or a version with a supported PATHEXT appended. We then try calling CreateProcessW // with the found versions in the appropriate order. - - // In the future, child process execution needs to move to Io implementation. - // Under those conditions, here we will have access to lower level directory - // opening function knowing which implementation we are in. Here, we imitate - // that scenario. var dir = dir: { // needs to be null-terminated try dir_buf.append(arena, 0);