Gather-writes to a file descriptor at an offset, retrying on EINTR.
Declared in <folly/FileUtil.h>
ssize_t
pwritevNoInt(
int fd,
iovec const* iov,
int count,
off_t offset);
The number of bytes written, or -1 on error.
| Name | Description |
|---|---|
| fd | The file descriptor to write to. |
| iov | Array of buffers to write. |
| count | Number of entries in iov. |
| offset | File offset to write at. |