blob: 5852e2e20ab0b5e97ad7867cf4332c5a80a7f253 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/*
* Copyright (c) 1997-2000 by Sun Microsystems, Inc.
* All rights reserved.
*/
#ifndef LINT
static const char rcsid[] = "$Id: readv.c,v 8.2 1999/10/13 16:39:21 vixie Exp $";
#endif
#pragma ident "%Z%%M% %I% %E% SMI"
#include "port_before.h"
#include <sys/types.h>
#include <sys/uio.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include "port_after.h"
#ifndef NEED_READV
int __bindcompat_readv;
#else
int
__readv(fd, vp, vpcount)
int fd;
const struct iovec *vp;
int vpcount;
{
int count = 0;
while (vpcount-- > 0) {
int bytes = read(fd, vp->iov_base, vp->iov_len);
if (bytes < 0)
return (-1);
count += bytes;
if (bytes != vp->iov_len)
break;
vp++;
}
return (count);
}
#endif /* NEED_READV */
|