diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2008-07-05 10:43:08 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2008-07-05 10:43:08 +0000 |
commit | faae2e663a108bb0080dfb721de1ed15c2be5b55 (patch) | |
tree | 7e26464b71b27c06358d6f8126cce42703269ec1 /lib | |
parent | f8937769e191d23294882d54793ad4fda2f182f8 (diff) |
- correct .Dt for pthread_attr_setstack.3
- new sentence, new line
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpthread/man/pthread_attr_init.3 | 5 | ||||
-rw-r--r-- | lib/libpthread/man/pthread_attr_setstack.3 | 4 | ||||
-rw-r--r-- | lib/libpthread/man/pthread_create.3 | 5 |
3 files changed, 8 insertions, 6 deletions
diff --git a/lib/libpthread/man/pthread_attr_init.3 b/lib/libpthread/man/pthread_attr_init.3 index ea8d64e0c70..10351aabf1f 100644 --- a/lib/libpthread/man/pthread_attr_init.3 +++ b/lib/libpthread/man/pthread_attr_init.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pthread_attr_init.3,v 1.8 2008/07/05 08:03:57 guenther Exp $ +.\" $OpenBSD: pthread_attr_init.3,v 1.9 2008/07/05 10:43:07 jmc Exp $ .\" Manual page derived from TOG's UNIX98 documentation. .\" .\" David Leonard, 2000. Public Domain. @@ -35,7 +35,8 @@ A single attributes object can be used in multiple simultaneous calls to The .Fn pthread_attr_destroy function is used to destroy a thread -attributes object. An implementation may cause +attributes object. +An implementation may cause .Fn pthread_attr_destroy to set .Fa attr diff --git a/lib/libpthread/man/pthread_attr_setstack.3 b/lib/libpthread/man/pthread_attr_setstack.3 index f9bf37838f5..c2cd372c8e7 100644 --- a/lib/libpthread/man/pthread_attr_setstack.3 +++ b/lib/libpthread/man/pthread_attr_setstack.3 @@ -1,10 +1,10 @@ -.\" $OpenBSD: pthread_attr_setstack.3,v 1.1 2008/07/05 08:03:57 guenther Exp $ +.\" $OpenBSD: pthread_attr_setstack.3,v 1.2 2008/07/05 10:43:07 jmc Exp $ .\" Manual page derived from TOG's UNIX98 documentation. .\" .\" David Leonard, 2000. Public Domain. .\" .Dd $Mdocdate: July 5 2008 $ -.Dt PTHREAD_ATTR_SETSTACKADDR 3 +.Dt PTHREAD_ATTR_SETSTACK 3 .Os .Sh NAME .Nm pthread_attr_setstack , diff --git a/lib/libpthread/man/pthread_create.3 b/lib/libpthread/man/pthread_create.3 index d3f5e0a82de..87833f5c736 100644 --- a/lib/libpthread/man/pthread_create.3 +++ b/lib/libpthread/man/pthread_create.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pthread_create.3,v 1.11 2008/07/05 08:03:57 guenther Exp $ +.\" $OpenBSD: pthread_create.3,v 1.12 2008/07/05 10:43:07 jmc Exp $ .\" .\" Copyright (c) 1996 John Birrell <jb@cimlogic.com.au>. .\" All rights reserved. @@ -50,7 +50,8 @@ function is used to create a new thread, with attributes specified by within a process. If .Fa attr -is NULL, the default attributes are used. If the attributes specified by +is NULL, the default attributes are used. +If the attributes specified by .Fa attr are modified later, the thread's attributes are not affected. Upon successful completion |