Until now I have been using net.Stream in synchronous mode.
Now I need to change the communication mode to non-blocking using posix.poll.
Comment in the net.zig states:
/// TODO in evented I/O mode, this implementation incorrectly uses the event loop's
/// file system thread instead of non-blocking. It needs to be reworked to properly
/// use non-blocking I/O.
Does this mean that I cant use net.Stream in non-blocking mode?