| 170 | } |
| 171 | |
| 172 | ssize_t send(int fd, const void *buf, size_t count, int flags, Timeout timeout) { |
| 173 | return DOIO_ONCE(::send(fd, buf, count, flags), wait_for_fd_writable(fd, timeout)); |
| 174 | } |
| 175 | |
| 176 | ssize_t sendmsg(int fd, const struct msghdr* msg, int flags, Timeout timeout) { |
| 177 | return DOIO_ONCE(::sendmsg(fd, msg, flags), wait_for_fd_writable(fd, timeout)); |
no test coverage detected