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
sendto$NOCANCEL
darwin has a number of i/o functions that won't return EINTR
This line:
uSockets/src/bsd.c
Line 67 in eab7df5
Could be:
int ret = sendto$NOCANCEL(fd, packet_buffer->buf[i], packet_buffer->len[i], flags, (struct sockaddr *)&packet_buffer->addr[i], sizeof(struct sockaddr_in));
Though a macro might be nice here so it is less ugly
There are several of these
recvfrom$NOCANCEL sendto$NOCANCEL fcntl$NOCANCEL sendmsg$NOCANCEL recvmsg$NOCANCEL connect$NOCANCEL accept$NOCANCEL accept4$NOCANCEL open$NOCANCEL close$NOCANCEL
The text was updated successfully, but these errors were encountered:
No branches or pull requests
darwin has a number of i/o functions that won't return EINTR
This line:
uSockets/src/bsd.c
Line 67 in eab7df5
Could be:
Though a macro might be nice here so it is less ugly
There are several of these
The text was updated successfully, but these errors were encountered: