Improved English
authorStuart Sechrest <sechrest@ucbvax.Berkeley.EDU>
Sat, 29 Jun 1985 07:24:47 +0000 (23:24 -0800)
committerStuart Sechrest <sechrest@ucbvax.Berkeley.EDU>
Sat, 29 Jun 1985 07:24:47 +0000 (23:24 -0800)
SCCS-vsn: lib/libc/sys/bind.2 6.3
SCCS-vsn: lib/libc/sys/chown.2 6.3
SCCS-vsn: lib/libc/sys/close.2 6.2

usr/src/lib/libc/sys/bind.2
usr/src/lib/libc/sys/chown.2
usr/src/lib/libc/sys/close.2

index 47c8a1c..e497d7e 100644 (file)
@@ -2,7 +2,7 @@
 .\" All rights reserved.  The Berkeley software License Agreement
 .\" specifies the terms and conditions for redistribution.
 .\"
 .\" All rights reserved.  The Berkeley software License Agreement
 .\" specifies the terms and conditions for redistribution.
 .\"
-.\"    @(#)bind.2      6.2 (Berkeley) %G%
+.\"    @(#)bind.2      6.3 (Berkeley) %G%
 .\"
 .TH BIND 2 ""
 .UC 5
 .\"
 .TH BIND 2 ""
 .UC 5
@@ -34,7 +34,7 @@ requests the
 be assigned to the socket.
 .SH NOTES
 Binding a name in the UNIX domain creates a socket in the file
 be assigned to the socket.
 .SH NOTES
 Binding a name in the UNIX domain creates a socket in the file
-system which must be deleted by the caller when it is no longer
+system that must be deleted by the caller when it is no longer
 needed (using
 .IR unlink (2)).
 The file created
 needed (using
 .IR unlink (2)).
 The file created
index f43be0f..99b9f1e 100644 (file)
@@ -2,7 +2,7 @@
 .\" All rights reserved.  The Berkeley software License Agreement
 .\" specifies the terms and conditions for redistribution.
 .\"
 .\" All rights reserved.  The Berkeley software License Agreement
 .\" specifies the terms and conditions for redistribution.
 .\"
-.\"    @(#)chown.2     6.2 (Berkeley) %G%
+.\"    @(#)chown.2     6.3 (Berkeley) %G%
 .\"
 .TH CHOWN 2 ""
 .UC 4
 .\"
 .TH CHOWN 2 ""
 .UC 4
@@ -21,7 +21,7 @@ int fd, owner, group;
 .fi
 .SH DESCRIPTION
 The file
 .fi
 .SH DESCRIPTION
 The file
-which is named by \fIpath\fP or referenced by \fIfd\fP
+that is named by \fIpath\fP or referenced by \fIfd\fP
 has its
 .I owner
 and 
 has its
 .I owner
 and 
index 2280d77..b07808a 100644 (file)
@@ -2,7 +2,7 @@
 .\" All rights reserved.  The Berkeley software License Agreement
 .\" specifies the terms and conditions for redistribution.
 .\"
 .\" All rights reserved.  The Berkeley software License Agreement
 .\" specifies the terms and conditions for redistribution.
 .\"
-.\"    @(#)close.2     6.1 (Berkeley) %G%
+.\"    @(#)close.2     6.2 (Berkeley) %G%
 .\"
 .TH CLOSE 2 ""
 .UC 4
 .\"
 .TH CLOSE 2 ""
 .UC 4
@@ -32,7 +32,7 @@ A close of all of a process's descriptors is automatic on
 but since
 there is a limit on the number of active descriptors per process,
 .I close
 but since
 there is a limit on the number of active descriptors per process,
 .I close
-is necessary for programs which deal with many descriptors.
+is necessary for programs that deal with many descriptors.
 .PP
 When a process forks (see
 .IR fork (2)),
 .PP
 When a process forks (see
 .IR fork (2)),
@@ -50,7 +50,7 @@ before the
 is attempted, but if some of these descriptors will still
 be needed if the execve fails, it is necessary to arrange for them
 to be closed if the execve succeeds.
 is attempted, but if some of these descriptors will still
 be needed if the execve fails, it is necessary to arrange for them
 to be closed if the execve succeeds.
-For this reason, the call ``fcntl(d, F_SETFD, 1)'' is provided
+For this reason, the call ``fcntl(d, F_SETFD, 1)'' is provided,
 which arranges that a descriptor will be closed after a successful
 execve; the call ``fcntl(d, F_SETFD, 0)'' restores the default,
 which is to not close the descriptor.
 which arranges that a descriptor will be closed after a successful
 execve; the call ``fcntl(d, F_SETFD, 0)'' restores the default,
 which is to not close the descriptor.