mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
std.Io.Threaded: set poll_buffer_len to 32
reasoning is that polling with large amount of operations will be rarely done with std.Io.Threaded. However this still provides the opportunity to provide concurrency for any real world use cases that need it.
This commit is contained in:
@@ -1323,7 +1323,7 @@ fn waitForApcOrAlert() void {
|
||||
|
||||
const max_iovecs_len = 8;
|
||||
const splat_buffer_size = 64;
|
||||
const poll_buffer_len = 100;
|
||||
const poll_buffer_len = 32;
|
||||
const default_PATH = "/usr/local/bin:/bin/:/usr/bin";
|
||||
|
||||
comptime {
|
||||
|
||||
Reference in New Issue
Block a user