Date: Mon, 21 May 2001 12:29:01 -0700 From: "John W. De Boskey" <jwd@FreeBSD.org> To: Current List <freebsd-current@FreeBSD.org> Subject: Minor read.2 (readv) doc update w/patch Message-ID: <20010521122901.A42742@FreeBSD.org>
next in thread | raw e-mail | index | archive | help
I ran into a minor error in the doc for readv. I double checked the kernel code and it checks against UIO_MAXIOV. writev.2 is correct. -john Index: read.2 =================================================================== RCS file: /home/ncvs/src/lib/libc/sys/read.2,v retrieving revision 1.11 diff -u -r1.11 read.2 --- read.2 2000/06/23 05:05:44 1.11 +++ read.2 2001/05/21 19:18:38 @@ -207,7 +207,8 @@ .Bl -tag -width Er .It Bq Er EINVAL .Fa Iovcnt -was less than or equal to 0, or greater than 16. +was less than or equal to 0, or greater than +.Dv UIO_MAXIOV . .It Bq Er EINVAL One of the .Fa iov_len To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010521122901.A42742>