Implementation details.
| Name | Description |
|---|---|
getTemporaryFilePathString | Returns a string compatible for mkstemp(). |
incr | incr overloads |
wrapFull | Wrap call to read/pread/write/pwrite(fd, buf, count, offset?) to retry on incomplete reads / writes. The variadic argument magic is there to support an additional argument (offset) for pread / pwrite; see the incr() functions above which do nothing if the offset is not present and increment it if it is. |
wrapNoInt | Wrap call to f(args) in loop to retry on EINTR. |
wrapvFull | Retry reading/writing iovec objects. |