summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2013-02-12 04:52:43 +0100
committerMichael Kerrisk <mtk.manpages@gmail.com>2013-02-12 04:52:43 +0100
commit36127c0e91988b2ec24e81c09463561ad1126fd3 (patch)
tree25ae805dd362345ea3e6efd88420733abefb269e
parent69d4e5cd4254692f84ec80c942238dfff96913f2 (diff)
Removed trailing white space at end of lines
-rw-r--r--man2/perf_event_open.26
-rw-r--r--man2/prctl.22
-rw-r--r--man2/tkill.26
-rw-r--r--man3/pthread_setname_np.36
-rw-r--r--man3/strtol.32
-rw-r--r--man5/nscd.conf.56
-rw-r--r--man5/proc.52
7 files changed, 15 insertions, 15 deletions
diff --git a/man2/perf_event_open.2 b/man2/perf_event_open.2
index ffcca9fea..ed468f260 100644
--- a/man2/perf_event_open.2
+++ b/man2/perf_event_open.2
@@ -1760,14 +1760,14 @@ file descriptors
.TP
.B PERF_EVENT_IOC_ENABLE
-Enables the individual event or event group specified by the
+Enables the individual event or event group specified by the
file descriptor argument.
The ioctl argument is ignored.
.TP
.B PERF_EVENT_IOC_DISABLE
-Disables the individual counter or event group specified by the
+Disables the individual counter or event group specified by the
file descriptor argument.
Enabling or disabling the leader of a group enables or disables the
@@ -1796,7 +1796,7 @@ Using an argument of 0 is considered undefined behavior.
.TP
.B PERF_EVENT_IOC_RESET
-Reset the event count specified by the
+Reset the event count specified by the
file descriptor argumentto zero.
This only resets the counts; there is no way to reset the
multiplexing
diff --git a/man2/prctl.2 b/man2/prctl.2
index 8588e4f54..012af4d54 100644
--- a/man2/prctl.2
+++ b/man2/prctl.2
@@ -114,7 +114,7 @@ set the "child subreaper" attribute of the calling process;
if
.I arg2
is zero, unset the attribute.
-When a process is marked as a child subreaper,
+When a process is marked as a child subreaper,
all of the children that it creates, and their descendants,
will be marked as having a subreaper.
In effect, a subreaper fulfills the role of
diff --git a/man2/tkill.2 b/man2/tkill.2
index fca00b15b..f6dc304bf 100644
--- a/man2/tkill.2
+++ b/man2/tkill.2
@@ -67,16 +67,16 @@ Avoid using this system call.
.\" thread descriptor and the time it makes the tgkill syscall,
.\" the target thread terminates and the same tid gets assigned
.\" to a new thread in the same process.
-.\"
+.\"
.\" (The tgkill syscall was designed to eliminate a similar race
.\" condition in tkill, but it only succeeded in eliminating races
.\" where the tid gets reused in a different process, and does not
.\" help if the same tid gets assigned to a new thread in the
.\" same process.)
-.\"
+.\"
.\" The only solution I can see is to introduce a mutex that ensures
.\" that a thread cannot exit while pthread_kill is being called on it.
-.\"
+.\"
.\" Note that in most real-world situations, like almost all race
.\" conditions, this one will be extremely rare. To make it
.\" measurable, one could exhaust all but 1-2 available pid values,
diff --git a/man3/pthread_setname_np.3 b/man3/pthread_setname_np.3
index a5e9bc972..98693bf57 100644
--- a/man3/pthread_setname_np.3
+++ b/man3/pthread_setname_np.3
@@ -180,17 +180,17 @@ main(int argc, char **argv)
errExitEN(rc, "pthread_setname_np");
sleep(2);
-
+
rc = pthread_getname_np(thread, thread_name,
(argc > 2) ? atoi(argv[1]) : NAMELEN);
if (rc != 0)
errExitEN(rc, "pthread_getname_np");
printf("The thread name after setting it is %s.\\n", thread_name);
-
+
rc = pthread_join(thread, NULL);
if (rc != 0)
errExitEN(rc, "pthread_join");
-
+
printf("Done\\n");
exit(EXIT_SUCCESS);
}
diff --git a/man3/strtol.3 b/man3/strtol.3
index f45a75363..17292ac53 100644
--- a/man3/strtol.3
+++ b/man3/strtol.3
@@ -159,7 +159,7 @@ and then determine if an error occurred by checking whether
has a nonzero value after the call.
According to POSIX.1-2001,
-in locales other than the "C" and "POSIX",
+in locales other than the "C" and "POSIX",
these functions may accept other,
implementation-defined numeric strings.
diff --git a/man5/nscd.conf.5 b/man5/nscd.conf.5
index 74aeb24fc..aa6ea416f 100644
--- a/man5/nscd.conf.5
+++ b/man5/nscd.conf.5
@@ -210,13 +210,13 @@ The default is 33554432.
.I <yes|no>
.RS
When set to
-.IR no
+.IR no
for
-.I passwd
+.I passwd
.I or
.I group
.IR service ,
-then the
+then the
.I .byname
requests are not added to
.IR passwd.byuid
diff --git a/man5/proc.5 b/man5/proc.5
index 36d7fda1a..30ca3a94f 100644
--- a/man5/proc.5
+++ b/man5/proc.5
@@ -2292,7 +2292,7 @@ This (read-only) file contains three numbers:
the number of allocated file handles
(i.e., the number of files presently opened);
the number of free file handles;
-and the maximum number of file handles (i.e., the same value as
+and the maximum number of file handles (i.e., the same value as
.IR /proc/sys/fs/file-max ).
If the number of allocated file handles is close to the
maximum, you should consider increasing the maximum.