Module Name: src
Committed By: wiz
Date: Sun Dec 20 02:16:40 UTC 2009
Modified Files:
src/lib/libc/sys: socketpair.2
Log Message:
Sort ERRORS.
To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/lib/libc/sys/socketpair.2
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/sys/socketpair.2
diff -u src/lib/libc/sys/socketpair.2:1.20 src/lib/libc/sys/socketpair.2:1.21
--- src/lib/libc/sys/socketpair.2:1.20 Sat Dec 19 23:00:10 2009
+++ src/lib/libc/sys/socketpair.2 Sun Dec 20 02:16:40 2009
@@ -1,4 +1,4 @@
-.\" $NetBSD: socketpair.2,v 1.20 2009/12/19 23:00:10 pooka Exp $
+.\" $NetBSD: socketpair.2,v 1.21 2009/12/20 02:16:40 wiz Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -62,21 +62,21 @@
.Sh ERRORS
The call succeeds unless:
.Bl -tag -width Er
-.It Bq Er EMFILE
-Too many descriptors are in use by this process.
-.It Bq Er ENFILE
-The system file table is full.
.It Bq Er EAFNOSUPPORT
The specified address family is not supported on this machine.
-.It Bq Er EPROTONOSUPPORT
-The specified protocol is not supported on this machine.
-.It Bq Er EOPNOTSUPP
-The specified protocol does not support creation of socket pairs.
.It Bq Er EFAULT
The address
.Fa sv
does not specify a valid part of the
process address space.
+.It Bq Er EMFILE
+Too many descriptors are in use by this process.
+.It Bq Er ENFILE
+The system file table is full.
+.It Bq Er EOPNOTSUPP
+The specified protocol does not support creation of socket pairs.
+.It Bq Er EPROTONOSUPPORT
+The specified protocol is not supported on this machine.
.El
.Sh SEE ALSO
.Xr pipe 2 ,