diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-01-27 15:47:48 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-01-27 15:47:48 +0000 |
commit | 408e8ac50920db5b8053dcb2c965c729d7769353 (patch) | |
tree | 92b85ca655f67ac47b5d8a05103a86651bcc4512 /lib | |
parent | 4c35bf5d5033c8d11fab77d1ce3aaa786780fc5c (diff) |
new sentence, new line
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpthread/man/pthread_exit.3 | 9 | ||||
-rw-r--r-- | lib/libpthread/man/pthread_setspecific.3 | 7 |
2 files changed, 9 insertions, 7 deletions
diff --git a/lib/libpthread/man/pthread_exit.3 b/lib/libpthread/man/pthread_exit.3 index 4cddb73dcb4..b65bdf814d5 100644 --- a/lib/libpthread/man/pthread_exit.3 +++ b/lib/libpthread/man/pthread_exit.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pthread_exit.3,v 1.12 2013/06/05 03:44:50 tedu Exp $ +.\" $OpenBSD: pthread_exit.3,v 1.13 2017/01/27 15:47:47 schwarze Exp $ .\" .\" Copyright (c) 1996 John Birrell <jb@cimlogic.com.au>. .\" All rights reserved. @@ -32,7 +32,7 @@ .\" .\" $FreeBSD: pthread_exit.3,v 1.7 1999/08/28 00:03:06 peter Exp $ .\" -.Dd $Mdocdate: June 5 2013 $ +.Dd $Mdocdate: January 27 2017 $ .Dt PTHREAD_EXIT 3 .Os .Sh NAME @@ -65,8 +65,9 @@ An implicit call to .Fn pthread_exit is made when a thread other than the thread in which .Fn main -was first invoked returns from the start routine that was used to create -it. The function's return value serves as the thread's exit status. +was first invoked returns from the start routine that was used to +create it. +The function's return value serves as the thread's exit status. .Pp The behavior of .Fn pthread_exit diff --git a/lib/libpthread/man/pthread_setspecific.3 b/lib/libpthread/man/pthread_setspecific.3 index 7a4da15ba3a..a25dd0e6411 100644 --- a/lib/libpthread/man/pthread_setspecific.3 +++ b/lib/libpthread/man/pthread_setspecific.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pthread_setspecific.3,v 1.12 2013/06/05 03:44:50 tedu Exp $ +.\" $OpenBSD: pthread_setspecific.3,v 1.13 2017/01/27 15:47:47 schwarze Exp $ .\" .\" Copyright (c) 1996 John Birrell <jb@cimlogic.com.au>. .\" All rights reserved. @@ -32,7 +32,7 @@ .\" .\" $FreeBSD: pthread_setspecific.3,v 1.5 1999/08/28 00:03:11 peter Exp $ .\" -.Dd $Mdocdate: June 5 2013 $ +.Dd $Mdocdate: January 27 2017 $ .Dt PTHREAD_SETSPECIFIC 3 .Os .Sh NAME @@ -49,7 +49,8 @@ function associates a thread-specific value with a .Fa key obtained via a previous call to .Fn pthread_key_create . -Different threads may bind different values to the same key. These values are +Different threads may bind different values to the same key. +These values are typically pointers to blocks of dynamically allocated memory that have been reserved for use by the calling thread. .Pp |