This commit is contained in:
Michael Kerrisk 2007-11-18 06:26:46 +00:00
parent 236d91365e
commit f4708374d6
13 changed files with 23 additions and 23 deletions

View File

@ -121,7 +121,7 @@ redundant and any further RTLD_LAZY operations irrelevant. Similarly,
note that once RTLD_GLOBAL has been specified the object
shall maintain the RTLD_GLOBAL status regardless of any previous or
future specification of RTLD_LOCAL, as long as the object
remains in the address space (see \fIdlclose\fP() ).
remains in the address space (see \fIdlclose\fP()).
.LP
Symbols introduced into a program through calls to \fIdlopen\fP()
may be used in relocation activities. Symbols so introduced

View File

@ -28,7 +28,7 @@ and \fIname\fP is the symbol's name as a character string.
.LP
The \fIdlsym\fP() function shall search for the named symbol in all
objects loaded automatically as a result of loading the
object referenced by \fIhandle\fP (see \fIdlopen\fP() ). Load ordering
object referenced by \fIhandle\fP (see \fIdlopen\fP()). Load ordering
is used in \fIdlsym\fP()
operations upon the global symbol object. The symbol resolution algorithm
used shall be dependency order as described in \fIdlopen\fP().
@ -90,7 +90,7 @@ Specifies the next object after this one that defines \fIname\fP.
\fIThis one\fP refers to the object containing the
invocation of \fIdlsym\fP(). The \fInext\fP object is the one found
upon the application of a load order symbol resolution
algorithm (see \fIdlopen\fP() ). The next object is either one of
algorithm (see \fIdlopen\fP()). The next object is either one of
global scope (because it was
introduced as part of the original process image or because it was
added with a \fIdlopen\fP() operation including the RTLD_GLOBAL flag),

View File

@ -295,10 +295,10 @@ down as described in the \fIposix_trace_shutdown\fP() function.
The new process shall inherit at least the following attributes from
the calling process image:
.IP " *" 3
Nice value (see \fInice\fP() )
Nice value (see \fInice\fP())
.LP
.IP " *" 3
\fIsemadj\fP values (see \fIsemop\fP() )
\fIsemadj\fP values (see \fIsemop\fP())
.LP
.IP " *" 3
Process ID
@ -322,7 +322,7 @@ Real group ID
Supplementary group IDs
.LP
.IP " *" 3
Time left until an alarm clock signal (see \fIalarm\fP() )
Time left until an alarm clock signal (see \fIalarm\fP())
.LP
.IP " *" 3
Current working directory
@ -331,20 +331,20 @@ Current working directory
Root directory
.LP
.IP " *" 3
File mode creation mask (see \fIumask\fP() )
File mode creation mask (see \fIumask\fP())
.LP
.IP " *" 3
File size limit (see \fIulimit\fP() )
File size limit (see \fIulimit\fP())
.LP
.IP " *" 3
Process signal mask (see \fIsigprocmask\fP() )
Process signal mask (see \fIsigprocmask\fP())
.LP
.IP " *" 3
Pending signal (see \fIsigpending\fP() )
Pending signal (see \fIsigpending\fP())
.LP
.IP " *" 3
\fItms_utime\fP, \fItms_stime\fP, \fItms_cutime\fP, and \fItms_cstime\fP
(see \fItimes\fP() )
(see \fItimes\fP())
.LP
.IP " *" 3
Resource limits

View File

@ -140,7 +140,7 @@ memory ID shall be decremented by
.LP
.IP " *" 3
For each semaphore for which the calling process has set a \fIsemadj\fP
value (see \fIsemop\fP() ), that
value (see \fIsemop\fP()), that
value shall be added to the \fIsemval\fP of the specified semaphore.
.LP
.IP " *" 3

View File

@ -148,7 +148,7 @@ The match between the template and input specification performed by
The month and weekday names can consist of any combination of upper
and lowercase letters. The process can request that the
input date or time specification be in a specific language by setting
the \fILC_TIME\fP category (see \fIsetlocale\fP() ).
the \fILC_TIME\fP category (see \fIsetlocale\fP()).
.LP
Leading zeros are not necessary for the descriptors that allow leading
zeros. However, at most two digits are allowed for those

View File

@ -29,7 +29,7 @@ the Base Definitions volume of IEEE\ Std\ 1003.1-2001, Section 12.2,
Utility Syntax Guidelines.
.LP
The parameters \fIargc\fP and \fIargv\fP are the argument count and
argument array as passed to \fImain\fP() (see \fIexec\fP() ). The
argument array as passed to \fImain\fP() (see \fIexec\fP()). The
argument \fIoptstring\fP is a string of recognized
option characters; if a character is followed by a colon, the option
takes an argument. All option characters allowed by Utility

View File

@ -61,7 +61,7 @@ form:
.RE
.LP
where \fB"ddd"\fP is a one to three digit decimal number between 0
and 255 (see \fIinet_addr\fP() ). The \fIinet_pton\fP() function does
and 255 (see \fIinet_addr\fP()). The \fIinet_pton\fP() function does
not accept other formats (such as the octal
numbers, hexadecimal numbers, and fewer than four numbers that \fIinet_addr\fP()
accepts).

View File

@ -33,7 +33,7 @@ the page size {PAGESIZE}.
If a mapping to be removed was private, any modifications made in
this address range shall be discarded.
.LP
Any memory locks (see \fImlock\fP() and \fImlockall\fP() ) associated
Any memory locks (see \fImlock\fP() and \fImlockall\fP()) associated
with
this address range shall be removed, as if by an appropriate call
to \fImunlock\fP().

View File

@ -105,7 +105,7 @@ function is used.
The \fIopendir\fP() function should be used in conjunction with \fIreaddir\fP(),
\fIclosedir\fP(), and \fIrewinddir\fP() to
examine the contents of the directory (see the EXAMPLES section in
\fIreaddir\fP() ). This method is
\fIreaddir\fP()). This method is
recommended for portability.
.SH RATIONALE
.LP

View File

@ -137,7 +137,7 @@ present, use the function call:
.fi
.RE
.LP
(See \fIsysconf\fP() ).
(See \fIsysconf\fP()).
.SH RATIONALE
.LP
The \fIpopen\fP() function should not be used by programs that have

View File

@ -106,9 +106,9 @@ the search are implementation-defined.
If \fIfile_actions\fP is a null pointer, then file descriptors open
in the calling process shall remain open in the child
process, except for those whose close-on- \fIexec\fP flag FD_CLOEXEC
is set (see \fIfcntl\fP() ). For those file descriptors that remain
is set (see \fIfcntl\fP()). For those file descriptors that remain
open, all attributes of the corresponding open file
descriptions, including file locks (see \fIfcntl\fP() ), shall remain
descriptions, including file locks (see \fIfcntl\fP()), shall remain
unchanged.
.LP
If \fIfile_actions\fP is not NULL, then the file descriptors open
@ -122,7 +122,7 @@ shall be:
The set of open file descriptors for the child process shall initially
be the same set as is open for the calling process. All
attributes of the corresponding open file descriptions, including
file locks (see \fIfcntl\fP() ), shall
file locks (see \fIfcntl\fP()), shall
remain unchanged.
.LP
.IP " 2." 4

View File

@ -53,7 +53,7 @@ context of the spawned process (prior to execution of the new
process image), in the order in which the actions were added to the
object; additionally, when the new process image is executed,
any file descriptor (from this new set) which has its FD_CLOEXEC flag
set shall be closed (see \fIposix_spawn\fP() ).
set shall be closed (see \fIposix_spawn\fP()).
.LP
The \fIposix_spawn_file_actions_addclose\fP() function shall add a
\fIclose\fP action to the object referenced by

View File

@ -117,7 +117,7 @@ input sequences, as described below for each conversion
character. A conversion specification shall be executed in the following
steps.
.LP
Input white-space characters (as specified by \fIisspace\fP() ) shall
Input white-space characters (as specified by \fIisspace\fP()) shall
be skipped, unless the
conversion specification includes a \fB[\fP, \fBc\fP, \fBC\fP,
or \fBn\fP conversion specifier.