mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-08-02 14:57:31 +03:00
Update to latest master
This commit is contained in:
@ -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
|
||||
|
@ -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,
|
||||
|
Reference in New Issue
Block a user