You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UDP sockets for example are always writable, thus polling them is a waste. io_uring also seems to try non-blocking send/sendmsg before setting up a internal poll by default. The flag IORING_RECVSEND_POLL_FIRST prevents the non-blocking send.
The text was updated successfully, but these errors were encountered:
UDP sockets for example are always writable, thus polling them is a waste. io_uring also seems to try non-blocking send/sendmsg before setting up a internal poll by default. The flag
IORING_RECVSEND_POLL_FIRST
prevents the non-blocking send.The text was updated successfully, but these errors were encountered: