View | Details | Raw Unified | Return to bug 1386 | Differences between
and this patch

Collapse All | Expand All

(-)atomicio.c (-1 / +1 lines)
Lines 86-92 atomicio(ssize_t (*f) (int, void *, size Link Here
86
 * ensure all of data on socket comes through. f==readv || f==writev
86
 * ensure all of data on socket comes through. f==readv || f==writev
87
 */
87
 */
88
size_t
88
size_t
89
atomiciov(ssize_t (*f) (int, const struct iovec *, int), int fd,
89
atomiciov(ssize_t (*f) (int, struct iovec *, int), int fd,
90
    const struct iovec *_iov, int iovcnt)
90
    const struct iovec *_iov, int iovcnt)
91
{
91
{
92
	size_t pos = 0, rem;
92
	size_t pos = 0, rem;

Return to bug 1386