Writes to a file descriptor, retrying on EINTR.
Synopsis
Declared in <folly/FileUtil.h>
ssize_t
writeNoInt(
int fd,
void const* buf,
size_t count);
Return Value
The number of bytes written, or ‐1 on error.
Parameters
Name |
Description |
fd |
The file descriptor to write to. |
buf |
Source buffer. |
count |
Number of bytes to write. |
Created with MrDocs