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:
Andrew Kelley
2026-01-08 15:20:21 -08:00
parent 24b3c4cec1
commit 3ef1266582
+1 -1
View File
@@ -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 {