- Timestamp:
- 2015-06-08T18:25:08Z (9 years ago)
- Children:
- 29ff5c2
- Parents:
- c720890 (diff), 61e7e02 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sock.h
rc720890 re4f08bf 9 9 #define sock_make_nonblocking(fd) fcntl(fd, F_SETFL, O_NONBLOCK) 10 10 #define sock_make_blocking(fd) fcntl(fd, F_SETFL, 0) 11 #define sockerr_again() (errno == EINPROGRESS || errno == EINTR )11 #define sockerr_again() (errno == EINPROGRESS || errno == EINTR || errno == EAGAIN) 12 12 void closesocket(int fd);
Note: See TracChangeset
for help on using the changeset viewer.