Skip to content

Commit

Permalink
posix: reduce stack size to 512KB
Browse files Browse the repository at this point in the history
  • Loading branch information
Cloudef committed Sep 10, 2024
1 parent da86753 commit 57aa3b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aio/posix/posix.zig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const windows = @import("windows.zig");
const wasi = @import("wasi.zig");

// Minimum stack size for the `perform` function
pub const stack_size = 1.049e+6;
pub const stack_size = 512000; // 512KB

// This file implements stuff that's not in std, not implement properly or not
// abstracted for all the platforms that we want to support
Expand Down

0 comments on commit 57aa3b0

Please sign in to comment.