summaryrefslogtreecommitdiff
path: root/lib/libc_r/man/pthread_testcancel.3
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>1999-07-09 13:36:00 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>1999-07-09 13:36:00 +0000
commit078c2448197a826265f74828b3159d758f1f0ceb (patch)
treeef3b0d7b2b6fcf1328ac8953d9e2abf6431093ea /lib/libc_r/man/pthread_testcancel.3
parent3610cb2f5b1eeb5e599fcca418780b43c2f30b6d (diff)
- remove all trailing whitespace
* except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it...
Diffstat (limited to 'lib/libc_r/man/pthread_testcancel.3')
-rw-r--r--lib/libc_r/man/pthread_testcancel.36
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc_r/man/pthread_testcancel.3 b/lib/libc_r/man/pthread_testcancel.3
index a6a0093f915..aaf37e26acc 100644
--- a/lib/libc_r/man/pthread_testcancel.3
+++ b/lib/libc_r/man/pthread_testcancel.3
@@ -36,7 +36,7 @@ to the indicated
.Fa type
and returns the previous cancelability type at the location referenced by
.Fa oldtype .
-Legal values for
+Legal values for
.Fa type
are
.Dv PTHREAD_CANCEL_DEFERRED
@@ -81,7 +81,7 @@ cancellation requests are held pending until a cancellation point (see
below) is reached. If cancelability is disabled, the setting of the
cancelability type has no immediate effect as all cancellation requests
are held pending; however, once cancelability is enabled again the new
-type will be in effect.
+type will be in effect.
.El
.Ss Cancellation Points
Cancellation points will occur when a thread is executing the following
@@ -120,7 +120,7 @@ The
.Fn pthread_setcancelstate
and
.Fn pthread_setcanceltype
-functions are used to control the points at which a thread may be
+functions are used to control the points at which a thread may be
asynchronously canceled. For cancellation control to be usable in modular
fashion, some rules must be followed.
.Pp