zig/BRANCH_TODO
Andrew Kelley 2bcdde2985 compiler: update for introduction of std.Io
only thing remaining is using libc dns resolution when linking libc
2025-10-29 06:20:49 -07:00

17 lines
729 B
Text

* Threaded: finish linux impl (all tests passing)
* Threaded: finish macos impl
* Threaded: finish windows impl
* fix Group.wait not handling cancelation (need to move impl of ResetEvent to Threaded)
* implement cancelRequest for non-linux posix
* finish converting all Threaded into directly calling system functions and handling EINTR
* audit the TODOs
* move max_iovecs_len to std.Io
* address the cancelation race condition (signal received between checkCancel and syscall)
* update signal values to be an enum
* delete the deprecated fs.File functions
* move fs.File.Writer to Io
* add non-blocking flag to net and fs operations, handle EAGAIN
* finish moving std.fs to Io
* finish moving all of std.posix into Threaded