- Slovakia
- https://lalinsky.com/
-
Joined on
2025年11月17日
std.Io: handle netReadPosix/netReceivePosix ack timeout
I'd have personally used error.ConnectionTimedOut, which follows the style of error.ConnectionReset.
std: introduce
std.cli, automatically parse command-line arguments into a second "juicy main" parameter
@castholm wrote in ziglang/zig#35304 (comment):
Make it possible to implement
Io.vtable.netWriteFile
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
5e51205119
thinking of chickening out
ffdacaac18
delete deprecated API
85e8cc8abc
update main function to accept args and environ
std.Io.Evented (io_uring): consider registered/fixed buffers for Reader/Writer fill paths
@ruihe774 wrote in ziglang/zig#35734 (comment):
std.Io.Evented (io_uring): consider registered/fixed buffers for Reader/Writer fill paths
@ruihe774 wrote in ziglang/zig#35734 (comment):
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.
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...
Avoid
error.Canceled swallowing in `std.debug.*
std.debug.print swallows error.Canceled
i can't open PR, getting 500 from codeberg, the fix is here:
f575328bbb
Avoid
error.Canceled swallowing in `std.debug.*
2065cf0728
Avoid
error.Canceled swallowing in `std.debug.*
std.debug.print swallows error.Canceled
std.Io: move getting of stdin/out/err to the vtable
Allow to poll file descriptors without reading/writing to them
@evyatar wrote in ziglang/zig#35608 (comment):