fix up case of function names

This commit is contained in:
lukem 1998-06-08 09:45:50 +00:00
parent 47fa59a196
commit d8c6c15bb4
2 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: mount.2,v 1.15 1998/02/02 05:20:32 perry Exp $
.\" $NetBSD: mount.2,v 1.16 1998/06/08 09:45:50 lukem Exp $
.\"
.\" Copyright (c) 1980, 1989, 1993
.\" The Regents of the University of California. All rights reserved.
@ -206,7 +206,7 @@ and the variable
.Va errno
is set to indicate the error.
.Sh ERRORS
.Fn Mount
.Fn mount
will fail when one of the following occurs:
.Bl -tag -width Er
.It Bq Er EPERM
@ -345,7 +345,7 @@ mounted.
.Sh BUGS
Some of the error codes need translation to more obvious messages.
.Sh HISTORY
.Fn Mount
.Fn mount
and
.Fn umount
(now unmount) function calls appeared in

View File

@ -1,4 +1,4 @@
.\" $NetBSD: select.2,v 1.9 1997/11/01 06:37:49 mycroft Exp $
.\" $NetBSD: select.2,v 1.10 1998/06/08 09:48:37 lukem Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -50,7 +50,7 @@
.Fn FD_ISSET fd &fdset
.Fn FD_ZERO &fdset
.Sh DESCRIPTION
.Fn Select
.Fn select
examines the I/O descriptor sets whose addresses are passed in
.Fa readfds ,
.Fa writefds ,
@ -70,7 +70,7 @@ On return,
replaces the given descriptor sets
with subsets consisting of those descriptors that are ready
for the requested operation.
.Fn Select
.Fn select
returns the total number of ready descriptors in all the sets.
.Pp
The descriptor sets are stored as bit fields in arrays of integers.
@ -117,7 +117,7 @@ and
.Fa exceptfds
may be given as nil pointers if no descriptors are of interest.
.Sh RETURN VALUES
.Fn Select
.Fn select
returns the number of ready descriptors that are contained in
the descriptor sets,
or -1 if an error occurred.
@ -178,7 +178,7 @@ a larger definition of
before the inclusion of
.Aq Pa sys/types.h .
.Pp
.Fn Select
.Fn select
should probably return the time remaining from the original timeout,
if any, by modifying the time value in place.
This may be implemented in future versions of the system.