Removed trailing white space at end of lines

This commit is contained in:
Michael Kerrisk 2008-10-29 15:43:44 -05:00
parent 668ec2fef5
commit c5571b613b
18 changed files with 23 additions and 23 deletions

View File

@ -143,7 +143,7 @@ and
.B EINTR .B EINTR
The The
.BR dup2 () .BR dup2 ()
or or
.BR dup3 () .BR dup3 ()
call was interrupted by a signal; see call was interrupted by a signal; see
.BR signal (7). .BR signal (7).

View File

@ -72,13 +72,13 @@ to obtain different behavior:
Set the close-on-exec Set the close-on-exec
.RB ( FD_CLOEXEC ) .RB ( FD_CLOEXEC )
flag on the new file descriptor. flag on the new file descriptor.
See the description of the See the description of the
.B O_CLOEXEC .B O_CLOEXEC
flag in flag in
.BR open (2) .BR open (2)
for reasons why this may be useful. for reasons why this may be useful.
.SH "RETURN VALUE" .SH "RETURN VALUE"
On success, On success,
these system calls these system calls
return a non-negative file descriptor. return a non-negative file descriptor.
On error, \-1 is returned, and On error, \-1 is returned, and

View File

@ -53,7 +53,7 @@ to achieve the same result.
Set the close-on-exec Set the close-on-exec
.RB ( FD_CLOEXEC ) .RB ( FD_CLOEXEC )
flag on the new file descriptor. flag on the new file descriptor.
See the description of the See the description of the
.B O_CLOEXEC .B O_CLOEXEC
flag in flag in
.BR open (2) .BR open (2)

View File

@ -63,7 +63,7 @@ to achieve the same result.
Set the close-on-exec Set the close-on-exec
.RB ( FD_CLOEXEC ) .RB ( FD_CLOEXEC )
flag on the new file descriptor. flag on the new file descriptor.
See the description of the See the description of the
.B O_CLOEXEC .B O_CLOEXEC
flag in flag in
.BR open (2) .BR open (2)

View File

@ -86,7 +86,7 @@ to achieve the same result.
Set the close-on-exec Set the close-on-exec
.RB ( FD_CLOEXEC ) .RB ( FD_CLOEXEC )
flag on the new file descriptor. flag on the new file descriptor.
See the description of the See the description of the
.B O_CLOEXEC .B O_CLOEXEC
flag in flag in
.BR open (2) .BR open (2)

View File

@ -172,7 +172,7 @@ to achieve the same result.
Set the close-on-exec Set the close-on-exec
.RB ( FD_CLOEXEC ) .RB ( FD_CLOEXEC )
flag on the new file descriptor. flag on the new file descriptor.
See the description of the See the description of the
.B O_CLOEXEC .B O_CLOEXEC
flag in flag in
.BR open (2) .BR open (2)

View File

@ -92,7 +92,7 @@ to achieve the same result.
Set the close-on-exec Set the close-on-exec
.RB ( FD_CLOEXEC ) .RB ( FD_CLOEXEC )
flag on the new file descriptor. flag on the new file descriptor.
See the description of the See the description of the
.B O_CLOEXEC .B O_CLOEXEC
flag in flag in
.BR open (2) .BR open (2)

View File

@ -543,7 +543,7 @@ This could occur, for example, if
.I hints.ai_socktype .I hints.ai_socktype
and and
.I hints.ai_protocol .I hints.ai_protocol
are inconsistent (e.g., are inconsistent (e.g.,
.BR SOCK_DGRAM .BR SOCK_DGRAM
and and
.BR IPPROTO_TCP , .BR IPPROTO_TCP ,

View File

@ -86,7 +86,7 @@ this argument can additionally include the letter \(aqe\(aq,
which causes the close-on-exec flag which causes the close-on-exec flag
.RB ( FD_CLOEXEC ) .RB ( FD_CLOEXEC )
to be set on the underlying file descriptor; to be set on the underlying file descriptor;
see the description of the see the description of the
.B O_CLOEXEC .B O_CLOEXEC
flag in flag in
.BR open (2) .BR open (2)

View File

@ -45,7 +45,7 @@ and then the object can be used in one or more
.BR pthread_create (3) .BR pthread_create (3)
calls that create threads. calls that create threads.
Calling Calling
.BR pthread_attr_init () .BR pthread_attr_init ()
on a thread attributes object that has already been initialized on a thread attributes object that has already been initialized
results in undefined behavior. results in undefined behavior.

View File

@ -48,7 +48,7 @@ the thread attributes object
.I attr .I attr
will be created in a joinable or a detached state. will be created in a joinable or a detached state.
The following values may be specified in The following values may be specified in
.IR detachstate : .IR detachstate :
.TP .TP
.B PTHREAD_CREATE_DETACHED .B PTHREAD_CREATE_DETACHED
@ -96,7 +96,7 @@ or detached using
see see
.BR pthread_create (3). .BR pthread_create (3).
It is an error to specify the thread ID of It is an error to specify the thread ID of
a thread that was created in a detached state a thread that was created in a detached state
in a later call to in a later call to
.BR pthread_detach (3) .BR pthread_detach (3)

View File

@ -94,7 +94,7 @@ error if
.I attr .I attr
or or
.I guardsize .I guardsize
is invalid. is invalid.
On Linux these functions always succeed On Linux these functions always succeed
(but portable and future-proof applications should nevertheless (but portable and future-proof applications should nevertheless
handle a possible error return). handle a possible error return).
@ -140,7 +140,7 @@ The obsolete LinuxThreads implementation did the right thing,
allocating extra space at the end of the stack for the guard area. allocating extra space at the end of the stack for the guard area.
.\" glibc includes the guardsize within the allocated stack size, .\" glibc includes the guardsize within the allocated stack size,
.\" which looks pretty clearly to be in violation of POSIX. .\" which looks pretty clearly to be in violation of POSIX.
.\" .\"
.\" Filed bug, 22 Oct 2008: .\" Filed bug, 22 Oct 2008:
.\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=6973 .\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=6973
.\" .\"

View File

@ -36,7 +36,7 @@ set/get stack address attribute in thread attributes object
.sp .sp
Compile and link with \fI\-pthread\fP. Compile and link with \fI\-pthread\fP.
.SH DESCRIPTION .SH DESCRIPTION
These functions are obsolete: These functions are obsolete:
.B do not use them. .B do not use them.
Use Use
.BR pthread_attr_setstack (3) .BR pthread_attr_setstack (3)

View File

@ -91,7 +91,7 @@ in subsequent calls to other pthreads functions.
The new thread inherits a copy of the creating thread's signal mask The new thread inherits a copy of the creating thread's signal mask
.RB ( pthread_sigmask (3)). .RB ( pthread_sigmask (3)).
The set of pending signals for the new thread is empty The set of pending signals for the new thread is empty
.RB ( sigpending (2)). .RB ( sigpending (2)).
The new thread does not inherit the creating thread's The new thread does not inherit the creating thread's
alternate signal stack alternate signal stack

View File

@ -24,7 +24,7 @@
.\" Modified, Sun Feb 26 15:04:20 1995, faith@cs.unc.edu .\" Modified, Sun Feb 26 15:04:20 1995, faith@cs.unc.edu
.\" Modified, Thu Apr 20 22:08:17 1995, jrv@vanzandt.mv.com .\" Modified, Thu Apr 20 22:08:17 1995, jrv@vanzandt.mv.com
.\" Modified, Mon Sep 18 22:32:47 1995, hpa@storm.net (H. Peter Anvin) .\" Modified, Mon Sep 18 22:32:47 1995, hpa@storm.net (H. Peter Anvin)
.\" FIXME The following are not documented: .\" FIXME The following are not documented:
.\" KDFONTOP (since 2.1.111) .\" KDFONTOP (since 2.1.111)
.\" KDGKBDIACRUC (since 2.6.24) .\" KDGKBDIACRUC (since 2.6.24)
.\" KDSKBDIACR .\" KDSKBDIACR

View File

@ -49,7 +49,7 @@ modifications of system files if you leave
.I utmp .I utmp
writable to any user other than the owner and group owner of the file. writable to any user other than the owner and group owner of the file.
.PP .PP
The file is a sequence of The file is a sequence of
.I utmp .I utmp
structures, structures,
declared as follows in declared as follows in

View File

@ -37,7 +37,7 @@ for the directory itself, and for files inside the directory.
The following system calls are used with this API: The following system calls are used with this API:
.BR inotify_init (2) .BR inotify_init (2)
(or (or
.BR inotify_init1 (2)), .BR inotify_init1 (2)),
.BR inotify_add_watch (2), .BR inotify_add_watch (2),
.BR inotify_rm_watch (2), .BR inotify_rm_watch (2),

View File

@ -181,8 +181,8 @@ Old versions of ld\-linux.so.1 also supported
.\" Document LD_AUDIT ("Install audit libraries for glibc") .\" Document LD_AUDIT ("Install audit libraries for glibc")
.\" new in glibc 2.4 .\" new in glibc 2.4
.\" ignored in set-user-ID and set-group-ID programs .\" ignored in set-user-ID and set-group-ID programs
.\" .\"
.\" For some info, see Solaris Linker and Libraries Guide, .\" For some info, see Solaris Linker and Libraries Guide,
.\" "Runtime Linker Auditing Interface" .\" "Runtime Linker Auditing Interface"
.TP .TP
.B LD_BIND_NOT .B LD_BIND_NOT
@ -240,7 +240,7 @@ For security reasons, since glibc 2.4,
is ignored for set-user-ID/set-group-ID binaries. is ignored for set-user-ID/set-group-ID binaries.
.\" Only used if $ORIGIN can't be determined by normal means .\" Only used if $ORIGIN can't be determined by normal means
.\" (from the origin path saved at load time, or from /proc/self/exe)? .\" (from the origin path saved at load time, or from /proc/self/exe)?
.\" .\"
.\" FIXME .\" FIXME
.\" Document LD_POINTER_GUARD .\" Document LD_POINTER_GUARD
.\" Since glibc 2.4 .\" Since glibc 2.4