summaryrefslogtreecommitdiffstats
path: root/lib/libc/sys/select.2
diff options
context:
space:
mode:
authorkeramida <keramida@FreeBSD.org>2004-12-23 23:45:25 +0000
committerkeramida <keramida@FreeBSD.org>2004-12-23 23:45:25 +0000
commit9992d6428f038cb027b08a659e8253ae0f0503a1 (patch)
treefa17121d9a635b571177c32da68d0670990b2c96 /lib/libc/sys/select.2
parent9cd8396061808a32518fcb7e287437308d5ef937 (diff)
downloadFreeBSD-src-9992d6428f038cb027b08a659e8253ae0f0503a1.zip
FreeBSD-src-9992d6428f038cb027b08a659e8253ae0f0503a1.tar.gz
``NULL is a specific instance of a null pointer constant; the generic is
a "null pointer".'' Making good use of the excellent explanations sent to me by Ruslan Ermilov, Garrett Wollman and Bruce Evans, correct the descriptions of null pointers. They are just "null pointers", not nil, not NULL or ".Dv NULL". Suggested by: ru, wollman, bde Reviewed by: ru, wollman Pointy hat: keramida
Diffstat (limited to 'lib/libc/sys/select.2')
-rw-r--r--lib/libc/sys/select.215
1 files changed, 4 insertions, 11 deletions
diff --git a/lib/libc/sys/select.2 b/lib/libc/sys/select.2
index 193c903..d90d521 100644
--- a/lib/libc/sys/select.2
+++ b/lib/libc/sys/select.2
@@ -108,23 +108,18 @@ to the maximum number of descriptors supported by the system.
.Pp
If
.Fa timeout
-is not a
-.Dv NULL
-pointer, it specifies the maximum interval to wait for the
+is not a null pointer, it specifies the maximum interval to wait for the
selection to complete.
System activity can lengthen the interval by
an indeterminate amount.
.Pp
If
.Fa timeout
-is a
-.Dv NULL
-pointer, the select blocks indefinitely.
+is a null pointer, the select blocks indefinitely.
.Pp
To effect a poll, the
.Fa timeout
-argument should not be
-.Dv NULL ,
+argument should not be a null pointer,
but it should point to a zero-valued timeval structure.
.Pp
Any of
@@ -132,9 +127,7 @@ Any of
.Fa writefds ,
and
.Fa exceptfds
-may be given as
-.Dv NULL
-pointers if no descriptors are of interest.
+may be given as null pointers if no descriptors are of interest.
.Sh RETURN VALUES
The
.Fn select
OpenPOWER on IntegriCloud