We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I'm using the BSD wrapper described in:
https://learn.microsoft.com/en-us/azure/rtos/netx/appendix-d
The following call works:
status = select(fdmax+1, &readfds, 0, 0, 0);
However, the following call does not:
timeout.tv_sec = 1; timeout.tv_usec = 0; status = select(fdmax+1, &readfds, 0, 0, &timeout);
When the timeout is used, it appears recv() always returns an errno of EAGAIN (11).
Any suggestions?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm using the BSD wrapper described in:
https://learn.microsoft.com/en-us/azure/rtos/netx/appendix-d
The following call works:
However, the following call does not:
When the timeout is used, it appears recv() always returns an errno of EAGAIN (11).
Any suggestions?
The text was updated successfully, but these errors were encountered: