| 203 | } |
| 204 | |
| 205 | ssize_t write(int fd, const void *buf, size_t count, Timeout timeout) { |
| 206 | return send(fd, buf, count, MSG_NOSIGNAL, timeout); |
| 207 | } |
| 208 | |
| 209 | ssize_t writev(int fd, const struct iovec *iov, int iovcnt, Timeout timeout) { |
| 210 | return sendv(fd, iov, iovcnt, 0, timeout); |