This commit is contained in:
Michael Kerrisk 2006-06-03 01:26:30 +00:00
parent 8dc8552af5
commit 7145b9a93c
19 changed files with 20 additions and 20 deletions

View File

@ -72,7 +72,7 @@ is ignored.
.I flags
is constructed by ORing together zero or more of the following values:
.TP
.B AT_EACESS
.B AT_EACCESS
Perform access checks using the effective user and group IDs.
By default,
.BR faccessat ()

View File

@ -45,7 +45,7 @@ getpeername \- get name of connected peer socket
.sp
.BI "int getpeername(int " s ", struct sockaddr *" name ", socklen_t *" namelen );
.SH DESCRIPTION
.B Getpeername
.BR getpeername ()
returns the name of the peer connected to socket
.IR s .
The

View File

@ -45,7 +45,7 @@ getsockname \- get socket name
.BI "int getsockname(int " s ", struct sockaddr *" name ", socklen_t *" namelen );
.fi
.SH DESCRIPTION
.B Getsockname
.BR getsockname ()
returns the current
.I name
for the specified socket. The

View File

@ -53,7 +53,7 @@ getsockopt, setsockopt \- get and set options on sockets
.BI "int setsockopt(int " s ", int " level ", int " optname ,
.BI "const void *" optval ", socklen_t " optlen );
.SH DESCRIPTION
.B Getsockopt
.BR getsockopt ()
and
.BR setsockopt ()
manipulate the

View File

@ -99,7 +99,7 @@ The use of the
.I timezone
structure is obsolete; the
.I tz
argument should normally be specfied as NULL.
argument should normally be specified as NULL.
The
.I tz_dsttime
field has never been used under Linux; it has not

View File

@ -45,7 +45,7 @@ killpg \- send signal to a process group
.sp
.BI "int killpg(int " pgrp ", int " sig );
.SH DESCRIPTION
.B Killpg
.BR killpg ()
sends the signal
.I sig
to the process group

View File

@ -236,7 +236,7 @@ and
.B MPOL_MF_MOVE_ALL
are only available on Linux 2.6.16 and later.
These system calls should not be used directy.
These system calls should not be used directly.
Instead, the higher level interface provided by the
.BR numa (3)
functions in the

View File

@ -333,7 +333,7 @@ Sleeping on a full message queue condition, the process caught a signal.
.B EINVAL
Invalid
.I msqid
value, or nonpositive
value, or non-positive
.I mtype
value, or
invalid

View File

@ -29,7 +29,7 @@
.\" FIXME . 2.6.17 is likely to get POLLRDHUP (and its analogue
.\" EPOLLRDHUP).
.\"
.\" FIXME . 2.6.17-rc1 has a defintion for POLLREMOVE, but this
.\" FIXME . 2.6.17-rc1 has a definition for POLLREMOVE, but this
.\" flag is not used in the code. Check later to see if it
.\" does get a use.
.\"

View File

@ -133,7 +133,7 @@ increase server load and decrease performance.
Many filesystems and disks were considered to be fast enough that the
implementation of
.B O_NONBLOCK
was deemed unnecesary. So, O_NONBLOCK may not be available on files
was deemed unnecessary. So, O_NONBLOCK may not be available on files
and/or disks.
.SH "SEE ALSO"
.BR close (2),

View File

@ -151,7 +151,7 @@ of zero or more of the following flags.
.BR MSG_CONFIRM " (Linux 2.3+ only)"
Tell the link layer that forward progress happened: you got a successful
reply from the other side. If the link layer doesn't get this
it'll regularly reprobe the neighbour (e.g. via a unicast ARP).
it will regularly reprobe the neighbour (e.g. via a unicast ARP).
Only valid on
.B SOCK_DGRAM
and

View File

@ -237,7 +237,7 @@ Some OSes use (a variation on) the device number, or the device number
combined with the filesystem type.
Several OSes restrict giving out the
.I f_fsid
field to the superuser only (and zero it for nonprivileged users),
field to the superuser only (and zero it for unprivileged users),
because this field is used in the filehandle of the filesystem
when NFS-exported, and giving it out is a security concern.
.LP

View File

@ -41,7 +41,7 @@ is not thread-safe, the functions \fBlgamma_r\fP() etc. have
been introduced; they return this sign via the parameter
.IR signp .
.PP
For nonpositive integer values of \fIx\fP, \fBlgamma\fP() returns HUGE_VAL,
For non-positive integer values of \fIx\fP, \fBlgamma\fP() returns HUGE_VAL,
sets \fIerrno\fP to ERANGE and raises the zero divide exception.
(Similarly, \fBlgammaf\fP() returns HUGE_VALF and \fBlgammal\fP() returns
HUGE_VALL.)

View File

@ -104,9 +104,9 @@ function returns \-1 if
.\" These conditions actually give undefined results, so I commented
.\" them out.
.\" .I stream
.\" is not associated with a ``popened'' command, if
.\" is not associated with a ``popen()ed'' command, if
.\".I stream
.\" already ``pclosed'', or if
.\" already ``pclose()d'', or if
.BR wait4 ()
returns an error, or some other error is detected.
.SH ERRORS

View File

@ -94,7 +94,7 @@ are ignored.
On success,
.BR sem_open ()
returns a the address of the new semaphore;
this address is used when calling other seamphore-related functions.
this address is used when calling other semaphore-related functions.
On error,
.BR sem_open ()
returns

View File

@ -55,7 +55,7 @@ The classical BSD version of this function appeared in 4.2BSD.
It sets the process's signal mask to
.IR sigmask .
Unix95 standardized the incompatible System V version of
this funtion, which removes only the specified signal
this function, which removes only the specified signal
.I sig
from the process' signal mask.
.\" __xpg_sigpause: Unix 95, spec 1170, SVID, SVR4, XPG

View File

@ -42,7 +42,7 @@ strchr, strrchr, strchrnul \- locate character in string
.B #define _GNU_SOURCE
.B #include <string.h>
.sp
.BI "char *strrchr(const char *" s ", int " c );
.BI "char *strchrnul(const char *" s ", int " c );
.fi
.SH DESCRIPTION
The \fBstrchr\fP() function returns a pointer to the first occurrence

View File

@ -38,7 +38,7 @@
.\" Modified Sun Aug 21 17:16:22 1994 by Rik Faith (faith@cs.unc.edu)
.\" Modified Sat May 04 19:34:31 MET DST 1996 by Michael Haardt
.\" (michael@cantor.informatik.rwth-aachen.de)
.\" Added strof, strold, aeb, 2001-06-07
.\" Added strof, strtold, aeb, 2001-06-07
.\"
.TH STRTOD 3 2001-06-07 "Linux" "Library functions"
.SH NAME

View File

@ -21,7 +21,7 @@ The Gamma function is defined by
.sp
Gamma(x) = integral from 0 to infinity of t^(x\-1) e^\-t dt
.sp
It is defined for every real number except for nonpositive integers.
It is defined for every real number except for non-positive integers.
For nonnegative integral \fIm\fP one has
.sp
Gamma(m+1) = m!