Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/libc/9sys/readv.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include <u.h>
#include <libc.h>

static
long
ioreadv(int fd, IOchunk *io, int nio, vlong offset)
{
	int i;
	long m, n, tot;
	char *buf, *p;

	tot = 0;
	for(i=0; i<nio; i++)
		tot += io[i].len;
	buf = malloc(tot);
	if(buf == nil)
		return -1;

	tot = pread(fd, buf, tot, offset);

	p = buf;
	n = tot;
	for(i=0; i<nio; i++){
		if(n <= 0)
			break;
		m = io->len;
		if(m > n)
			m = n;
		memmove(io->addr, p, m);
		n -= m;
		p += m;
		io++;
	}

	free(buf);
	return tot;
}

long
readv(int fd, IOchunk *io, int nio)
{
	return ioreadv(fd, io, nio, -1LL);
}

long
preadv(int fd, IOchunk *io, int nio, vlong off)
{
	return ioreadv(fd, io, nio, off);
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.