Replace "SysV" by "System V"

This commit is contained in:
Michael Kerrisk 2006-01-13 09:39:55 +00:00
parent 845f2c47c6
commit aa651b3950
10 changed files with 87 additions and 25 deletions

87
Changes
View File

@ -9,6 +9,8 @@ The following people contributed notes, ideas, or patches that have
been incorporated in changes in this release:
Andries Brouwer <Andries.Brouwer@cwi.nl>
Mike Frysinger <vapier@gentoo.org>
Stefan Puiu <stefanpuiuro@yahoo.com>
Apologies if I missed anyone!
@ -16,21 +18,70 @@ Apologies if I missed anyone!
Global changes
--------------
dd.1
cp.1
truncate.2
gethostname.2
lseek.2
listxattr.2
readlink.2
sysfs.2
stat.2
ustat.2
uname.2
getdomainname.2
getlogin.3
ttyname.3
getpass.3
getline.3
hsearch.3
bzero.3
string.3
scanf.3
getnameinfo.3
dlopen.3
stpcpy.3
sysconf.3
readdir.3
argz_add.3
perror.3
gethostbyname.3
confstr.3
bstring.3
strdup.3
printf.3
strptime.3
termios.3
strftime.3
fwide.3
strfmon.3
asprintf.3
tty_ioctl.4
dsp56k.4
elf.5
termcap.5
proc.5
charsets.7
unix.7
mtk
Various pages use inconsistent terms for 'null byte' (which
is the C99/SUSv3 term for the '\0' character).
Various pages use inconsistent terms for 'null byte' (which
is the C99/SUSv3 term for the '\0' character).
To rectify this the following changes were made in the above pages:
To rectify this the following changes were made in the above pages:
Replace 'zero byte' with 'null byte'.
Replace 'null character' with 'null byte'.
Replace 'nulls' with 'null bytes'.
Replace 'NUL-terminated' by 'null-terminated'.
Replace 'NUL' by 'null byte'.
Replace 'terminating NUL' by 'terminating null byte'.
Replace 'final NUL' by 'terminating null byte'.
Replace 'NUL character' by 'null byte'.
Various pages
mtk
Replace "SysV" by "System V".
Replace 'zero byte' with 'null byte'.
Replace 'null character' with 'null byte'.
Replace 'nulls' with 'null bytes'.
Replace 'NUL-terminated' by 'null-terminated'.
Replace 'NUL' by 'null byte'.
Replace 'terminating NUL' by 'terminating null byte'.
Replace 'final NUL' by 'terminating null byte'.
Replace 'NUL character' by 'null byte'.
Typographical or grammatical errors have been corrected in several
places.
@ -47,6 +98,10 @@ gethostname.2
Added GLIBC NOTES describing operation of glibc's
gethostname() wrapper function.
recv.2
Stefan Puiu
Relocate misplaced discussion of MSG_DONTWAIT.
fmemopen.3
mtk
Rewrote substantial parts of the page, and relicensed under GPL.
@ -63,3 +118,9 @@ proc.5
Noted that the contents of /proc/PID/{cwd,exe,fd,root,task}
are not available if the main thread has terminated.
udp.7
Stefan Puiu / mtk
Small rewording of discussion of SO_BSDCOMPAT
(add cross-ref to socket(7)).

View File

@ -2510,12 +2510,12 @@ socket.7
Noted the Linux-specific feature whereby setsockopt() doubles
the value given for SO_SNDBUF and SO_RCVBUF.
Noted kernel imposed minimum values for SO_SNDBUF and SO_RCVBUF.
Noted kernel-imposed minimum values for SO_SNDBUF and SO_RCVBUF.
udp.7
mtk, after a note by Stefan Puiu
Updated discussion of SO_BSDCOMPAT.
Added uinx.7 and ipv6.7 to SEE ALSO.
Added unix.7 and ipv6.7 to SEE ALSO.
unix.7
mtk

View File

@ -30,7 +30,7 @@ getcontext, setcontext \- get or set the user context
.br
.BI "int setcontext(const ucontext_t *" ucp );
.SH DESCRIPTION
In a SysV-like environment, one has the two types
In a System V-like environment, one has the two types
\fBmcontext_t\fP and \fBucontext_t\fP defined in
.I <ucontext.h>
and the four functions

View File

@ -150,7 +150,7 @@ Some other implementations behave in the same manner as Linux.
.\" For example, the default Solaris compilation environment
.\" behaves like Linux, and contributors to a March 2005
.\" thread in the Austin mailing list reported that some
.\" other (SysV) implementations did/do the same -- MTK, Apr 05
.\" other (System V) implementations did/do the same -- MTK, Apr 05
.SH "CONFORMING TO"
SVr4, SVID, POSIX, 4.3BSD, X/OPEN. SVr4 documents additional ENOLINK and
EMULTIHOP error conditions; POSIX.1 does not document ELOOP.

View File

@ -178,7 +178,7 @@ POSIX took
.BR setpgid ()
from the BSD function
.BR setpgrp ().
Also SysV has a function with the same name, but it is identical to
Also System V has a function with the same name, but it is identical to
.BR setsid (2).
.LP
To get the prototypes under glibc, define both _XOPEN_SOURCE and

View File

@ -72,7 +72,7 @@ as
.BR size_t .
Not all locales use a point as the radix character (`decimal point').
.SH "CONFORMING TO"
SysVR2, XPG2
System V release 2, XPG2
.SH "SEE ALSO"
.BR ecvt_r (3),
.BR gcvt (3),

View File

@ -49,8 +49,9 @@ but compilation with
.RE
will turn \fBoff_t\fP into a 64-bit type.
.SH NOTES
These functions are found on SysV-like systems.
They are not present in libc4, libc5, glibc 2.0 but available since glibc 2.1.
These functions are found on Sysem V-like systems.
They are not present in libc4, libc5, glibc 2.0
but are available since glibc 2.1.
.SH "CONFORMING TO"
The
.BR fseeko ()

View File

@ -142,8 +142,8 @@ LSB deprecates the functions
and
.BR setmntent ().
.SH NOTES
SysV also has a \fBgetmntent\fP() function but the calling sequence
differs, and the returned structure is different. Under SysV
System V also has a \fBgetmntent\fP() function but the calling sequence
differs, and the returned structure is different. Under System V
.I /etc/mnttab
is used.
4.4BSD and Digital Unix have a routine \fBgetmntinfo\fP(),

View File

@ -31,7 +31,7 @@ makecontext, swapcontext \- manipulate user context
.br
.BI "int swapcontext (ucontext_t *" oucp ", ucontext_t *" ucp );
.SH DESCRIPTION
In a SysV-like environment, one has the type \fBucontext_t\fP defined in
In a System V-like environment, one has the type \fBucontext_t\fP defined in
.I <ucontext.h>
and the four functions
\fBgetcontext\fP(), \fBsetcontext\fP(), \fBmakecontext\fP()

View File

@ -60,7 +60,7 @@ These functions are obsolete. Instead,
.BR sprintf ()
is recommended.
.SH "CONFORMING TO"
SysVr4.0. Not seen in most common Unix implementations,
System V r4.0. Not seen in most common Unix implementations,
but occurs in SunOS. Not supported by libc4 and libc5.
Supported by glibc.
.SH "SEE ALSO"