Update to latest master

This commit is contained in:
Krzysztof Wolicki
2023-11-24 12:24:19 +01:00
parent e27eb727c4
commit 46699d53d1
2 changed files with 3 additions and 3 deletions

View File

@ -875,7 +875,7 @@ fn benchSteps(
) !void {
// Open the directory ./src/bench
const c_dir_path = (comptime root()) ++ "/src/bench";
var c_dir = try fs.openIterableDirAbsolute(c_dir_path, .{});
var c_dir = try fs.openDirAbsolute(c_dir_path, .{ .iterate = true });
defer c_dir.close();
// Go through and add each as a step
@ -918,7 +918,7 @@ fn conformanceSteps(
// Open the directory ./conformance
const c_dir_path = (comptime root()) ++ "/conformance";
var c_dir = try fs.openIterableDirAbsolute(c_dir_path, .{});
var c_dir = try fs.openDirAbsolute(c_dir_path, .{ .iterate = true });
defer c_dir.close();
// Go through and add each as a step

View File

@ -132,7 +132,7 @@ const WindowsPty = struct {
pub const Fd = windows.HANDLE;
// Process-wide counter for pipe names
var pipe_name_counter = std.atomic.Atomic(u32).init(1);
var pipe_name_counter = std.atomic.Value(u32).init(1);
out_pipe: windows.HANDLE,
in_pipe: windows.HANDLE,