lukasl commented on pull request ziglang/zig#35241 2026年07月07日 12:52:42 +02:00
std.Io: handle netReadPosix/netReceivePosix ack timeout

I'd have personally used error.ConnectionTimedOut, which follows the style of error.ConnectionReset.

lukasl created pull request ziglang/zig#35930 2026年06月25日 11:20:31 +02:00
Make it possible to implement Io.vtable.netWriteFile
lukasl pushed to wire-io-net-write-file at lukasl/zig 2026年06月25日 11:15:20 +02:00
2d93bab10d Make it possible to implement Io.vtable.netWriteFile
2dca73595f build: use new linker if both new-linker and use-llvm are true
9aa93a045e Lld: don't include shared libraries in static archives
b9153f3f1d Merge pull request 'x86_64: implement win64 abi for more vector types' (#35865) from jacobly/x86_64-win64-vec-abi into master
5ef49b681e
mailmap: update email address of xtex
Compare 10 commits »
lukasl created branch wire-io-net-write-file in lukasl/zig 2026年06月25日 11:15:20 +02:00
lukasl pushed to main at lukasl/zig 2026年06月25日 11:13:56 +02:00
5e51205119 thinking of chickening out
ffdacaac18 delete deprecated API
85e8cc8abc update main function to accept args and environ
Compare 3 commits »
lukasl created branch main in lukasl/zig 2026年06月25日 11:13:56 +02:00
lukasl commented on issue ziglang/zig#35734 2026年06月21日 13:10:31 +02:00
std.Io.Evented (io_uring): consider registered/fixed buffers for Reader/Writer fill paths

In zio, I have a flag that disallows tasks to migrate across threads, so it is possible to have both models in a single codebase.

lukasl commented on issue ziglang/zig#35654 2026年06月21日 07:28:30 +02:00
std.Io: move getting of stdin/out/err to the vtable

This is even more important on Windows, as I can't use the TEB handles directly, they need to be checked, possible re-opened, in order to be able to do async I/O on them. It would be much nicer if...

lukasl created pull request ziglang/zig#35666 2026年06月07日 17:44:27 +02:00
Avoid error.Canceled swallowing in `std.debug.*
lukasl commented on issue ziglang/zig#35657 2026年06月07日 12:25:11 +02:00
std.debug.print swallows error.Canceled

i can't open PR, getting 500 from codeberg, the fix is here:

lukasl pushed to fix-canceled-swallow-in-std-debug at lukasl/zig 2026年06月07日 12:23:09 +02:00
f575328bbb Avoid error.Canceled swallowing in `std.debug.*
lukasl pushed to fix-canceled-swallow-in-std-debug at lukasl/zig 2026年06月07日 12:22:38 +02:00
2065cf0728 Avoid error.Canceled swallowing in `std.debug.*
lukasl created branch fix-canceled-swallow-in-std-debug in lukasl/zig 2026年06月07日 12:22:38 +02:00
lukasl opened issue ziglang/zig#35657 2026年06月07日 12:11:34 +02:00
std.debug.print swallows error.Canceled
lukasl opened issue ziglang/zig#35654 2026年06月07日 07:30:09 +02:00
std.Io: move getting of stdin/out/err to the vtable