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
Even when dealing with non-blocking sockets, it is advantageous to be able to check if a function would block or return P_ERROR_IO_WOULD_BLOCK. If a select() variant is unavailable, the alternative is to poll each IO function on each socket manually, which adds overhead to applications when they could be leveraging knowledge that the kernel already has.
The text was updated successfully, but these errors were encountered:
Even when dealing with non-blocking sockets, it is advantageous to be able to check if a function would block or return
P_ERROR_IO_WOULD_BLOCK
. If aselect()
variant is unavailable, the alternative is to poll each IO function on each socket manually, which adds overhead to applications when they could be leveraging knowledge that the kernel already has.The text was updated successfully, but these errors were encountered: